summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKlaus Aehlig <klaus.aehlig@huawei.com>2023-08-16 09:46:48 +0200
committerKlaus Aehlig <klaus.aehlig@huawei.com>2023-08-16 16:47:55 +0200
commit98b6063eeeb8914e305beb7b2acad1cecae388b9 (patch)
tree78f768582df72633cfeecf9ec820ef3fdda515b6
parentffbb5ab230d1307e10f72bf5d94441b2a134c5af (diff)
downloadjustbuild-1.2.0-beta1.tar.gz
Release 1.2.0~beta1v1.2.0-beta1
-rw-r--r--CHANGELOG.md5
-rw-r--r--src/buildtool/main/version.cpp2
2 files changed, 6 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index f6550334..0c8ccad3 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -57,6 +57,11 @@ A feature release on top of `1.1.0`, backwards compatible.
- `just install-cas` now, like `just install`, removes an existing
destination file before installing instead of overwriting.
+## Release `1.2.0~beta1` (2023-08-16)
+
+First beta release for the upcoming `1.2.0` release; see release
+notes there.
+
## Release `1.1.0` (2023-05-19)
A feature release on top of `1.0.0`, backwards compatible.
diff --git a/src/buildtool/main/version.cpp b/src/buildtool/main/version.cpp
index 5dfd3e5b..28e63984 100644
--- a/src/buildtool/main/version.cpp
+++ b/src/buildtool/main/version.cpp
@@ -21,7 +21,7 @@ auto version() -> std::string {
std::size_t major = 1;
std::size_t minor = 2;
std::size_t revision = 0;
- std::string suffix = "~alpha";
+ std::string suffix = "~beta1";
#ifdef VERSION_EXTRA_SUFFIX
suffix += VERSION_EXTRA_SUFFIX;
#endif