diff options
author | Vincent Ambo <mail@tazj.in> | 2018-10-05T22·44+0200 |
---|---|---|
committer | Vincent Ambo <github@tazj.in> | 2018-10-05T23·04+0200 |
commit | 7ec507f8cb6554db3a02336bcb8096239d361a75 (patch) | |
tree | 8391cf27b36f5ed8def9a8958a15c88cd443a363 | |
parent | 55c4943df14a73acce102f105e096f3a3978faab (diff) |
chore: Bump version to 1.1.0
... in preparation of a new release!
-rw-r--r-- | Cargo.lock | 2 | ||||
-rw-r--r-- | Cargo.toml | 4 | ||||
-rw-r--r-- | README.md | 2 | ||||
-rw-r--r-- | default.nix | 2 |
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock index 01684869c82a..40bdc962800a 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -214,7 +214,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "journaldriver" -version = "1.0.0" +version = "1.1.0" dependencies = [ "chrono 0.4.6 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.5.13 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index 654b82ce6ec2..248b22807fe1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "journaldriver" -version = "1.0.0" -authors = ["Vincent Ambo <vincent@aprila.no>"] +version = "1.1.0" +authors = ["Vincent Ambo <mail@tazj.in>"] license = "GPL-3.0-or-later" [dependencies] diff --git a/README.md b/README.md index 32efcf42880a..7c8ca956ee5d 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ logging service) to [Stackdriver Logging][]. Many existing log services are written in inefficient dynamic languages with error-prone "cover every possible use-case" -configuration. `journaldrive` instead aims to fit a specific use-case +configuration. `journaldriver` instead aims to fit a specific use-case very well, instead of covering every possible logging setup. `journaldriver` can be run on GCP-instances with no additional diff --git a/default.nix b/default.nix index 6efed05c964f..92ab494c420e 100644 --- a/default.nix +++ b/default.nix @@ -10,7 +10,7 @@ with pkgs; rustPlatform.buildRustPackage { inherit doCheck; name = "journaldriver"; - version = "1.0.0"; + version = "1.1.0"; cargoSha256 = "03rq96hzv97wh2gbzi8sz796bqgh6pbpvdn0zy6zgq2f2sgkavsl"; src = ./.; |