Skip to content

Commit f7639e9

Browse files
committed
Bump version to 0.6.0
1 parent 1752255 commit f7639e9

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ if(DEFINED PROJECT_NAME)
44
set(SUBPROJECT ON)
55
endif()
66

7-
project(qtpromise VERSION 0.5.0 LANGUAGES CXX)
7+
project(qtpromise VERSION 0.6.0 LANGUAGES CXX)
88

99
list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_LIST_DIR}/cmake")
1010

docs/qtpromise/getting-started.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ installed either as a [`subtree`](#subtree) or a [`submodule`](#submodule). Read
2828
commands in ["Git: submodules vs subtrees"](https://nering.dev/2016/git-submodules-vs-subtrees/)
2929
which provides a good comparison between these two workflows.
3030

31-
The following examples install QtPromise version 0.5.0 under the `3rdparty/qtpromise` subdirectory.
31+
The following examples install QtPromise version 0.6.0 under the `3rdparty/qtpromise` subdirectory.
3232
Note that the install directory is arbitrary and can be any empty directory under your repository.
3333
Once installed, refer to the [CMake](#cmake) or [qmake](#qmake) sections for details of integrating
3434
QtPromise into your project.
@@ -38,7 +38,7 @@ QtPromise into your project.
3838
```sh
3939
cd <your/project/repository>
4040
git remote add qtpromise https://github.com/simonbrunel/qtpromise.git
41-
git subtree add -P 3rdparty/qtpromise qtpromise v0.5.0 --squash -m "Add QtPromise v0.5.0"
41+
git subtree add -P 3rdparty/qtpromise qtpromise v0.6.0 --squash -m "Add QtPromise v0.6.0"
4242
```
4343

4444
#### submodule
@@ -47,10 +47,10 @@ git subtree add -P 3rdparty/qtpromise qtpromise v0.5.0 --squash -m "Add QtPromis
4747
cd <your/project/repository>
4848
git submodule add https://github.com/simonbrunel/qtpromise.git 3rdparty/qtpromise
4949
cd 3rdparty/qtpromise
50-
git checkout v0.5.0
50+
git checkout v0.6.0
5151
cd ../..
5252
git add 3rdparty/qtpromise
53-
git commit -m "Add QtPromise v0.5.0"
53+
git commit -m "Add QtPromise v0.6.0"
5454
```
5555

5656
### Download

qpm.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"url": "https://github.com/simonbrunel/qtpromise.git"
1111
},
1212
"version": {
13-
"label": "0.5.0"
13+
"label": "0.6.0"
1414
},
1515
"license": "MIT",
1616
"pri_filename": "qtpromise.pri",

0 commit comments

Comments
 (0)