diff options
| author | Jack O'Connor <[email protected]> | 2023-06-17 13:22:26 -0700 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2023-06-17 13:22:26 -0700 |
| commit | 74220e2ca157e1319f5141bbd2bcdfb2bc1a20a0 (patch) | |
| tree | 30ff44018560a20cc4835b4b07083729e02608e2 | |
| parent | 072bef5bf000999e4b1e264b48133764d5f51141 (diff) | |
correct the VERSION in CMakeLists.txt
| -rw-r--r-- | c/CMakeLists.txt | 2 | ||||
| -rw-r--r-- | tools/release.md | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/c/CMakeLists.txt b/c/CMakeLists.txt index 93213ed..1414b5f 100644 --- a/c/CMakeLists.txt +++ b/c/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.9) project(libblake3 - VERSION 1.3.3 + VERSION 1.4.0 DESCRIPTION "BLAKE3 C implementation" LANGUAGES C ASM ) diff --git a/tools/release.md b/tools/release.md index 47593b2..17a07b0 100644 --- a/tools/release.md +++ b/tools/release.md @@ -6,6 +6,7 @@ - Delete b3sum/Cargo.lock and recreate it with `cargo build` or similar. - Update the `--help` output in b3sum/README.md if it's changed. - Bump `BLAKE3_VERSION_STRING` in c/blake3.h. +- Bump `VERSION` in c/CMakeLists.txt. - Make a version bump commit with change notes. - `git push` and make sure CI is green. - `git tag` the version bump commit with the new version number. |
