diff --git a/README.md b/README.md index 6933c39..7bcb449 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Using the e-mail address you provided during GPG key generation, run `build-deb. ```bash ./build-deb.sh john@doe.com -apt update && apt install build/torch-agent_0.0.3-1_all.deb +apt update && apt install build/torch-agent_0.0.4-1_all.deb ``` This will: diff --git a/debian/changelog b/debian/changelog index 07e08d3..dda6e66 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -torch-agent (0.0.3-1) stable; urgency=medium +torch-agent (0.0.4-1) stable; urgency=medium * Update diff --git a/example/README.md b/example/README.md index 5d234b6..e03412a 100755 --- a/example/README.md +++ b/example/README.md @@ -40,7 +40,7 @@ In a separate terminal window, run the subscriber: ```bash cd .. ./make-pkg.sh john@doe.com -cp -f build/torch-agent_0.0.3-1_all.deb example/ +cp -f build/torch-agent_0.0.4-1_all.deb example/ cd example ``` diff --git a/example/Vagrantfile b/example/Vagrantfile index 23b075e..8aebfd6 100644 --- a/example/Vagrantfile +++ b/example/Vagrantfile @@ -64,7 +64,7 @@ Vagrant.configure("2") do |config| # Ansible, Chef, Docker, Puppet and Salt are also available. Please see the # documentation for more information about their specific syntax and use. - config.vm.provision "file", source: "torch-agent_0.0.3-1_all.deb", destination: "~/" + config.vm.provision "file", source: "torch-agent_0.0.4-1_all.deb", destination: "~/" config.vm.provision "file", source: "agent-config", destination: "~/torch-conf" 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 apt update - sudo apt install -y ./torch-agent_0.0.3-1_all.deb + sudo apt install -y ./torch-agent_0.0.4-1_all.deb sudo cp -f torch-conf/* /etc/torch/ sudo chown -R torch /etc/torch diff --git a/example/torch-agent_0.0.3-1_all.deb b/example/torch-agent_0.0.3-1_all.deb deleted file mode 100644 index 4a1e568..0000000 Binary files a/example/torch-agent_0.0.3-1_all.deb and /dev/null differ diff --git a/example/torch-agent_0.0.4-1_all.deb b/example/torch-agent_0.0.4-1_all.deb new file mode 100644 index 0000000..7c9a311 Binary files /dev/null and b/example/torch-agent_0.0.4-1_all.deb differ diff --git a/torch_agent/__init__.py b/torch_agent/__init__.py index 27fdca4..81f0fde 100644 --- a/torch_agent/__init__.py +++ b/torch_agent/__init__.py @@ -1 +1 @@ -__version__ = "0.0.3" +__version__ = "0.0.4"