summaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2018-04-18 15:26:51 +0200
committerMatthias Beyer <mail@beyermatthias.de>2018-04-19 10:05:53 +0200
commitd2dceb664011074a3a52db5dbd8501de868d8990 (patch)
treead6f736a4c3e500e1fdcdf0efd62cab04f2631e0 /doc
parent0d31ee7efd5cf03f656589d681754d4858ebd686 (diff)
Update version numbers: 0.7.0 -> 0.8.0
Diffstat (limited to 'doc')
-rw-r--r--doc/src/00000.md2
-rw-r--r--doc/src/02000-store.md6
-rw-r--r--doc/src/03020-writing-modules.md2
3 files changed, 5 insertions, 5 deletions
diff --git a/doc/src/00000.md b/doc/src/00000.md
index 5b552fdc..2af2bf8f 100644
--- a/doc/src/00000.md
+++ b/doc/src/00000.md
@@ -1,6 +1,6 @@
---
title: imag User Documentation
-version: 0.7.0
+version: 0.8.0
date: April 2018
listings: true
codeBlockCaptions: true
diff --git a/doc/src/02000-store.md b/doc/src/02000-store.md
index d7aacdf1..acb2c6d8 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.7.0"
+version = "0.8.0"
[note]
name = "foo"
@@ -228,12 +228,12 @@ The strucure is as follows:
```json
{
- "version": "0.7.0",
+ "version": "0.8.0",
"store": {
"example": {
"header": {
"imag": {
- "version": "0.7.0",
+ "version": "0.8.0",
},
},
"content": "hi there!",
diff --git a/doc/src/03020-writing-modules.md b/doc/src/03020-writing-modules.md
index cc41a008..371a436c 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.7.0", path = "../../../lib/core/libimagstore" }`
+ `libimagstore = { version = "0.8.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.