aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSven-Hendrik Haase <svenstaro@gmail.com>2019-01-11 02:55:13 +0000
committerSven-Hendrik Haase <svenstaro@gmail.com>2019-01-11 02:55:13 +0000
commit0a6698b2c9aef5113d67d41f08b33f3253a5c44d (patch)
treee9bafd67f2679568c2b333f64e1267059b0d5ca4
parentBump deps (fixes #23) (diff)
downloadminiserve-d1b693925f328265cc3a1d5ecb3e5c6220deb610.tar.gz
miniserve-d1b693925f328265cc3a1d5ecb3e5c6220deb610.zip
This is 0.2.2v0.2.2
-rw-r--r--Cargo.lock2
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 4a9fefa..71155dc 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -674,7 +674,7 @@ dependencies = [
[[package]]
name = "miniserve"
-version = "0.2.1"
+version = "0.2.2"
dependencies = [
"actix 0.7.9 (registry+https://github.com/rust-lang/crates.io-index)",
"actix-web 0.7.18 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/Cargo.toml b/Cargo.toml
index 7c551bf..74e0baf 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "miniserve"
-version = "0.2.1"
+version = "0.2.2"
description = "For when you really just want to serve some files over HTTP right now!"
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>"]
repository = "https://github.com/svenstaro/miniserve"
diff --git a/README.md b/README.md
index 4590dc5..212b127 100644
--- a/README.md
+++ b/README.md
@@ -76,7 +76,7 @@ You can provide `-i` multiple times to bind to multiple interfaces at the same t
This is mostly a note for me on how to release this thing:
-- Update version in `Cargo.toml`.
+- Update version in `Cargo.toml` and run `cargo update`.
- `git commit` and `git tag -s`, `git push`.
- `cargo publish`
- Releases will automatically be deployed by Travis.