summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-11-10 11:36:29 +0100
committerMatthias Beyer <mail@beyermatthias.de>2018-11-10 11:56:37 +0100
commit4e516ee19d682e77fa72a93cf15e3b8832346fbb (patch)
tree816bd16a083498bd1ccdc7ee9e9b38073e4461b0 /doc
parent4fd2feb6f3fa6805231edcff7cede2a13630a7c1 (diff)
Update version strings
...for the next release, which will be imag 0.10.0! Signed-off-by: Matthias Beyer <mail@beyermatthias.de>
Diffstat (limited to 'doc')
-rw-r--r--doc/src/00000.md2
-rw-r--r--doc/src/02000-store.md2
-rw-r--r--doc/src/03020-writing-modules.md2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/00000.md b/doc/src/00000.md
index b3ab6503..e47ed7e2 100644
--- a/doc/src/00000.md
+++ b/doc/src/00000.md
@@ -1,6 +1,6 @@
---
title: imag User Documentation
-version: 0.9.0
+version: 0.10.0
date: May 2018
listings: true
codeBlockCaptions: true
diff --git a/doc/src/02000-store.md b/doc/src/02000-store.md
index a89e2a86..aab16453 100644
--- a/doc/src/02000-store.md
+++ b/doc/src/02000-store.md
@@ -77,7 +77,7 @@ An example for a file in the store follows.
---
[imag]
-version = "0.9.0"
+version = "0.10.0"
[note]
name = "foo"
diff --git a/doc/src/03020-writing-modules.md b/doc/src/03020-writing-modules.md
index 043d494c..313573f4 100644
--- a/doc/src/03020-writing-modules.md
+++ b/doc/src/03020-writing-modules.md
@@ -48,7 +48,7 @@ first dependency here.
3. Put `libimagstore` as a dependency in the
`/lib/domain/libimagnumberstorage/Cargo.toml` file.
By using
- `libimagstore = { version = "0.9.0", path = "../../../lib/core/libimagstore" }`
+ `libimagstore = { version = "0.10.0", path = "../../../lib/core/libimagstore" }`
we automatically get all the goodness of Cargo, so that releases
automagically work as expected, but when developing locally, the local
version of `libimagstore` is used.