Update version number in docs in preparation for the release

This commit is contained in:
Olivier Goffart 2021-11-24 14:10:16 +01:00
parent 78753cd3aa
commit abed31454c
9 changed files with 12 additions and 12 deletions

View file

@ -36,7 +36,7 @@ include(FetchContent)
FetchContent_Declare(
SixtyFPS
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_TAG v0.1.4
GIT_TAG v0.1.5
SOURCE_SUBDIR api/sixtyfps-cpp
)
FetchContent_MakeAvailable(SixtyFPS)
@ -112,7 +112,7 @@ include(FetchContent)
FetchContent_Declare(
SixtyFPS
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_TAG v0.1.4
GIT_TAG v0.1.5
SOURCE_SUBDIR api/sixtyfps-cpp
)
FetchContent_MakeAvailable(SixtyFPS)

View file

@ -43,7 +43,7 @@ include(FetchContent)
FetchContent_Declare(
SixtyFPS
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_TAG v0.1.4
GIT_TAG v0.1.5
SOURCE_SUBDIR api/sixtyfps-cpp
)
FetchContent_MakeAvailable(SixtyFPS)

View file

@ -20,7 +20,7 @@ include(FetchContent)
FetchContent_Declare(
SixtyFPS
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_TAG v0.1.4
GIT_TAG v0.1.5
SOURCE_SUBDIR api/sixtyfps-cpp
)
FetchContent_MakeAvailable(SixtyFPS)

View file

@ -22,7 +22,7 @@ In your `Cargo.toml` add:
```toml
[dependencies]
sixtyfps = "0.1.4"
sixtyfps = "0.1.5"
```
And in your `main.rs`:

View file

@ -67,11 +67,11 @@ resolver = "2" # avoid dependency conflicts on some platforms
edition = "2018"
[dependencies]
sixtyfps = "0.1.4"
sixtyfps = "0.1.5"
...
[build-dependencies]
sixtyfps-build = "0.1.4"
sixtyfps-build = "0.1.5"
```
In the `build.rs` file:

View file

@ -23,11 +23,11 @@ In your Cargo.toml:
build = "build.rs"
[dependencies]
sixtyfps = "0.1.4"
sixtyfps = "0.1.5"
...
[build-dependencies]
sixtyfps-build = "0.1.4"
sixtyfps-build = "0.1.5"
```
In the `build.rs` file:

View file

@ -21,7 +21,7 @@ include(FetchContent)
FetchContent_Declare(
SixtyFPS
GIT_REPOSITORY https://github.com/sixtyfpsui/sixtyfps.git
GIT_TAG v0.1.4
GIT_TAG v0.1.5
SOURCE_SUBDIR api/sixtyfps-cpp
)
FetchContent_MakeAvailable(SixtyFPS)

View file

@ -5,7 +5,7 @@ The tiles in the game should have a random placement. We'll need to add the <`ra
```toml
[dependencies]
sixtyfps = "0.1.4"
sixtyfps = "0.1.5"
rand = "0.8" # Added
```

View file

@ -19,7 +19,7 @@ edition = "2018"
resolver = "2"
[dependencies]
sixtyfps = "0.1.4"
sixtyfps = "0.1.5"
```
The `resolver = "2"` line is there to avoid some errors because of conflicting dependencies on some platforms.