mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
Set dev version (#1924)
This commit is contained in:
parent
689c7c74f6
commit
0fe5ff0f87
|
@ -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>",
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -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 ?=
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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>",
|
||||||
|
|
Loading…
Reference in a new issue