Skip to content

Commit

Permalink
Merge tag '0.6.0' into develop
Browse files Browse the repository at this point in the history
Tag release 0.6.0
  • Loading branch information
FloGa committed Apr 7, 2024
2 parents d7d28ac + a9ba11d commit feb1245
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 9 deletions.
14 changes: 13 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changes since latest release
# Changes in 0.6.0

- Make integration tests runnable under windows

- Update to latest Rust workflow

- Add thiserror as dependency

- Move error output to main, use Result in lib

- Upgrade env_logger

- Update dependencies

# Changes in 0.5.2

Expand Down
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "upnp-daemon"
version = "0.6.0-SNAPSHOT"
version = "0.6.0"
description = "A daemon for continuously opening ports via UPnP."
readme = "README.md"
categories = ["command-line-utilities", "network-programming"]
Expand Down Expand Up @@ -45,7 +45,7 @@ include = ["src/**/*", "LICENSE", "README.md"]

# Internal dependencies

easy-upnp = { version = "0.2.0-SNAPSHOT", path = "crates/easy-upnp" }
easy-upnp = { version = "0.2.0", path = "crates/easy-upnp" }

# Runtime dependencies

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.6.0-SNAPSHOT
0.6.0
14 changes: 13 additions & 1 deletion crates/easy-upnp/CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
# Changes since latest release
# Changes in 0.2.0

- Add thiserror as dependency

- Use thiserror instead raw errors

- Properly propagate errors

- Use re-exported Ipv4Cidr

- Move error output to main, use Result in lib

- Update dependencies

# Changes in 0.1.1

Expand Down
2 changes: 1 addition & 1 deletion crates/easy-upnp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "easy-upnp"
version = "0.2.0-SNAPSHOT"
version = "0.2.0"
description = "Easily open and close UPnP ports."
readme = "README.md"
categories = ["network-programming"]
Expand Down
2 changes: 1 addition & 1 deletion crates/easy-upnp/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0-SNAPSHOT
0.2.0

0 comments on commit feb1245

Please sign in to comment.