Set dev version (#1924)

This commit is contained in:
Firstyear 2023-08-01 15:23:07 +10:00 committed by GitHub
parent 689c7c74f6
commit 0fe5ff0f87
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 9 deletions

View file

@ -28,7 +28,7 @@ members = [
] ]
[workspace.package] [workspace.package]
version = "1.1.0-beta.13" version = "1.1.0-rc.14"
authors = [ authors = [
"William Brown <william@blackhats.net.au>", "William Brown <william@blackhats.net.au>",
"James Hodgkinson <james@terminaloutcomes.com>", "James Hodgkinson <james@terminaloutcomes.com>",

View file

@ -1,6 +1,6 @@
IMAGE_BASE ?= kanidm IMAGE_BASE ?= kanidm
IMAGE_VERSION ?= devel IMAGE_VERSION ?= devel
IMAGE_EXT_VERSION ?= 1.1.0-beta.13 IMAGE_EXT_VERSION ?= 1.1.0-rc.14
CONTAINER_TOOL_ARGS ?= CONTAINER_TOOL_ARGS ?=
IMAGE_ARCH ?= "linux/amd64,linux/arm64" IMAGE_ARCH ?= "linux/amd64,linux/arm64"
CONTAINER_BUILD_ARGS ?= CONTAINER_BUILD_ARGS ?=

View file

@ -14,7 +14,7 @@ cargo install cargo-udeps
### Cargo Tasks ### Cargo Tasks
- [ ] cargo udeps - [ ] RUSTC\_BOOTSTRAP=1 cargo udeps
- [ ] cargo outdated -R - [ ] cargo outdated -R
- [ ] cargo audit - [ ] cargo audit
- [ ] cargo test - [ ] cargo test
@ -34,15 +34,14 @@ cargo install cargo-udeps
- [ ] build wasm components with release profile - [ ] build wasm components with release profile
- [ ] Update `RELEASE_NOTES.md` - [ ] Update `RELEASE_NOTES.md`
- [ ] git commit - [ ] git commit
- [ ] git rebase -i HEAD~X
- [ ] git push origin YYYYMMDD-release - [ ] git push origin YYYYMMDD-release
- [ ] Merge PR - [ ] Merge PR
### Git Management ### Git Management
- [ ] git checkout master - [ ] git checkout master
- [ ] git branch 1.1.0-alpha.x (Note no v to prevent ref conflict) - [ ] git pull
- [ ] git checkout v1.1.0-alpha.x - [ ] git checkout -b 1.1.0-alpha.x (Note no v to prevent ref conflict)
- [ ] git tag v1.1.0-alpha.x - [ ] git tag v1.1.0-alpha.x
- [ ] Final inspect of the branch - [ ] Final inspect of the branch
@ -50,6 +49,7 @@ cargo install cargo-udeps
- [ ] git push origin 1.1.0-alpha.x - [ ] git push origin 1.1.0-alpha.x
- [ ] git push origin 1.1.0-alpha.x --tags - [ ] git push origin 1.1.0-alpha.x --tags
- [ ] github -> Ensure release branch is protected
- [ ] github -> create new release based on tag (not branch) - use tag because then tools will get - [ ] github -> create new release based on tag (not branch) - use tag because then tools will get
the tag + patches we apply. the tag + patches we apply.
@ -75,6 +75,7 @@ cargo install cargo-udeps
- [ ] git checkout master - [ ] git checkout master
- [ ] git pull - [ ] git pull
- [ ] git branch YYYYMMDD-dev-version - [ ] git checkout -b YYYYMMDD-dev-version
- [ ] update version in ./kanidmd\_web\_ui/Cargo.toml - [ ] update version in ./server/web\_ui/Cargo.toml
- [ ] update version in ./Cargo.toml - [ ] update version in ./Cargo.toml
- [ ] update version in ./Makefile

View file

@ -3,7 +3,7 @@ name = "kanidmd_web_ui"
description = "Kanidm Server Web User Interface" description = "Kanidm Server Web User Interface"
documentation = "https://docs.rs/kanidm/latest/kanidm/" documentation = "https://docs.rs/kanidm/latest/kanidm/"
version = "1.1.0-beta.13" version = "1.1.0-rc.14"
authors = [ authors = [
"William Brown <william@blackhats.net.au>", "William Brown <william@blackhats.net.au>",
"James Hodgkinson <james@terminaloutcomes.com>", "James Hodgkinson <james@terminaloutcomes.com>",