about summary refs log tree commit diff
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2018-10-05T22·44+0200
committerVincent Ambo <github@tazj.in>2018-10-05T23·04+0200
commit7ec507f8cb6554db3a02336bcb8096239d361a75 (patch)
tree8391cf27b36f5ed8def9a8958a15c88cd443a363
parent55c4943df14a73acce102f105e096f3a3978faab (diff)
chore: Bump version to 1.1.0
... in preparation of a new release!
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml4
-rw-r--r--README.md2
-rw-r--r--default.nix2
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 01684869c8..40bdc96280 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 654b82ce6e..248b22807f 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 32efcf4288..7c8ca956ee 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 6efed05c96..92ab494c42 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 = ./.;