diff --git a/docs/user_technical/installation.md b/docs/user_technical/installation.md index c1827e5c7..4c3599381 100644 --- a/docs/user_technical/installation.md +++ b/docs/user_technical/installation.md @@ -15,7 +15,7 @@ After a successful download the Memgraph Docker image can be imported into Docker: ``` -docker load -i /path/to/memgraph_alpha_v0.6.0.tar.gz +docker load -i /path/to/memgraph_alpha_v0.7.0.tar.gz ``` ### Image Configuration & Running Memgraph @@ -23,7 +23,7 @@ docker load -i /path/to/memgraph_alpha_v0.6.0.tar.gz Memgraph can be started by executing: ``` -docker run -it -p 7687:7687 memgraph_alpha_v0.6.0 +docker run -it -p 7687:7687 memgraph_alpha_v0.7.0 ``` The `-it` option enables displaying Memgraph's logs inside the current shell. @@ -45,7 +45,7 @@ mkdir -p memgraph # Docker expects full path to the created folder. FULL_OUTPUT_PATH=$PWD/memgraph # Run Memgraph. -docker run -d -p 7687:7687 -v ${FULL_OUTPUT_PATH}:/var/lib/memgraph --name memgraph_alpha_v0.6.0 +docker run -d -p 7687:7687 -v ${FULL_OUTPUT_PATH}:/var/lib/memgraph --name memgraph_alpha_v0.7.0 ``` In the commands above `-d` means that the container will be detached (run in diff --git a/docs/user_technical/upcoming-features.md b/docs/user_technical/upcoming-features.md index bfd90a57a..8a3e0f85c 100644 --- a/docs/user_technical/upcoming-features.md +++ b/docs/user_technical/upcoming-features.md @@ -25,18 +25,6 @@ allow deletion of created indices. Although we have implemented the most common features of the openCypher query language, there are other useful features we are still working on. -#### Map Literals - -This feature would enable using ad-hoc property maps. For example, updating -multiple properties on an existing node: - - MATCH (node) SET node = { name: "Lamp", price: 100, color: "blue" } - -Note that the same can be achieved with the current support but in a longer -way: - - MATCH (node) SET node.name = "Lamp", node.price = 100, node.color = "blue" - #### Named Paths It would be useful to store paths that match a pattern into a variable. This diff --git a/docs/user_technical/update_version b/docs/user_technical/update_version new file mode 100755 index 000000000..e9970d89d --- /dev/null +++ b/docs/user_technical/update_version @@ -0,0 +1,10 @@ +#!/bin/bash + +working_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" + +# TODO: add arguments --previous-version & --next-version +# TODO: validate version format +# TODO: if version isn't updated bundle can't succeed +# TODO: integrate with bundle + +sed -i "s@$1@$2@g" ${working_dir}/installation.md