Skip to content

Commit

Permalink
Fixed wrong base62 encoding
Browse files Browse the repository at this point in the history
  • Loading branch information
dswd committed Dec 4, 2019
1 parent 229db24 commit 50058e6
Show file tree
Hide file tree
Showing 8 changed files with 124 additions and 148 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@

This project follows [semantic versioning](http://semver.org).

### Unreleased
### v1.1.0 (2019-12-04)

- [added] Exchange peer timeout and adapt keepalive accordingly
- [added] Reducing published peer timeout to 5 min when NAT is detected
- [added] Added more tests
- [changed] Rust version 1.41.0
- [changed] Rust version 1.39.0
- [changed] Updated dependencies
- [fixed] Fixed potential startup dependency issue
- [fixed] Fixed wrong base62 encoding

### v1.0.0 (2019-03-21)

Expand Down
113 changes: 1 addition & 112 deletions Cargo.lock

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

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vpncloud"
version = "1.0.0"
version = "1.1.0"
authors = ["Dennis Schwerdel <[email protected]>"]
build = "build.rs"
license = "GPL-3.0"
Expand Down Expand Up @@ -28,7 +28,6 @@ igd = "0.9"
siphasher = "0.3"
daemonize = "0.4"
ring = "0.16"
base-62 = "0.1"

[build-dependencies]
cc = "^1"
Expand Down
12 changes: 12 additions & 0 deletions assets/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
vpncloud (1.1.0) stable; urgency=medium

* [added] Exchange peer timeout and adapt keepalive accordingly
* [added] Reducing published peer timeout to 5 min when NAT is detected
* [added] Added more tests
* [changed] Rust version 1.41.0
* [changed] Updated dependencies
* [fixed] Fixed potential startup dependency issue
* [fixed] Fixed wrong base62 encoding

-- Dennis Schwerdel <[email protected]> Thu, 04 Dec 2019 19:01:34 +0100

vpncloud (1.0.0) stable; urgency=medium

* [added] Added ability to publish small beacons for rendezvous
Expand Down
2 changes: 1 addition & 1 deletion builder/Dockerfile-deb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN useradd -ms /bin/bash user
USER user
WORKDIR /home/user

ENV RUST=1.33.0
ENV RUST=1.39.0

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain ${RUST}

Expand Down
2 changes: 1 addition & 1 deletion builder/Dockerfile-rpm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN useradd -ms /bin/bash user
USER user
WORKDIR /home/user

ENV RUST=1.33.0
ENV RUST=1.39.0

RUN curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain ${RUST}

Expand Down
Loading

0 comments on commit 50058e6

Please sign in to comment.