Increment version to 0.0.3

master 0.0.3
B.J. Dweck 2020-10-09 00:01:59 +02:00
parent fa3ad27146
commit 1a4fceb89e
5 changed files with 6 additions and 6 deletions

View File

@ -25,7 +25,7 @@ Using the e-mail address you provided during GPG key generation, run `build-deb.
```bash ```bash
./build-deb.sh john@doe.com ./build-deb.sh john@doe.com
apt update && apt install build/torch-agent_0.0.2-1_all.deb apt update && apt install build/torch-agent_0.0.3-1_all.deb
``` ```
This will: This will:

2
debian/changelog vendored
View File

@ -1,4 +1,4 @@
torch-agent (0.0.2-1) stable; urgency=medium torch-agent (0.0.3-1) stable; urgency=medium
* Update * Update

View File

@ -40,7 +40,7 @@ In a separate terminal window, run the subscriber:
```bash ```bash
cd .. cd ..
./make-pkg.sh john@doe.com ./make-pkg.sh john@doe.com
cp -f build/torch-agent_0.0.2-1_all.deb example/ cp -f build/torch-agent_0.0.3-1_all.deb example/
cd example cd example
``` ```

4
example/Vagrantfile vendored
View File

@ -64,7 +64,7 @@ Vagrant.configure("2") do |config|
# Ansible, Chef, Docker, Puppet and Salt are also available. Please see the # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the
# documentation for more information about their specific syntax and use. # documentation for more information about their specific syntax and use.
config.vm.provision "file", source: "torch-agent_0.0.2-1_all.deb", destination: "~/" config.vm.provision "file", source: "torch-agent_0.0.3-1_all.deb", destination: "~/"
config.vm.provision "file", source: "agent-config", destination: "~/torch-conf" config.vm.provision "file", source: "agent-config", destination: "~/torch-conf"
config.vm.provision "shell", inline: <<-SHELL config.vm.provision "shell", inline: <<-SHELL
@ -72,7 +72,7 @@ Vagrant.configure("2") do |config|
sudo -- sh -c "echo '10.0.2.2 mqtt.example.com' >> /etc/hosts" sudo -- sh -c "echo '10.0.2.2 mqtt.example.com' >> /etc/hosts"
sudo apt update sudo apt update
sudo apt install -y ./torch-agent_0.0.2-1_all.deb sudo apt install -y ./torch-agent_0.0.3-1_all.deb
sudo cp -f torch-conf/* /etc/torch/ sudo cp -f torch-conf/* /etc/torch/
sudo chown -R torch /etc/torch sudo chown -R torch /etc/torch

View File

@ -1 +1 @@
__version__ = "0.0.2" __version__ = "0.0.3"