mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
Release v5.0.0-beta.10 (#3141)
* release v5.0.0-rc.0 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix release-drafter.yml Signed-off-by: Sebastian Malton <sebastian@malton.name> * Add ability to force tag Signed-off-by: Sebastian Malton <sebastian@malton.name> * release v5.0.0-rc.0 Signed-off-by: Sebastian Malton <sebastian@malton.name> * Fix release-drafter.yml Signed-off-by: Sebastian Malton <sebastian@malton.name> * Add ability to force tag Signed-off-by: Sebastian Malton <sebastian@malton.name> * v5.0.0-beta.10 Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> * fix migrations Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com> Co-authored-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
parent
ebde8c7004
commit
4096b87f99
1
.github/release-drafter.yml
vendored
1
.github/release-drafter.yml
vendored
@ -10,6 +10,7 @@ categories:
|
|||||||
- title: '🧰 Maintenance'
|
- title: '🧰 Maintenance'
|
||||||
labels:
|
labels:
|
||||||
- 'chore'
|
- 'chore'
|
||||||
|
- 'area/documentation'
|
||||||
- 'area/ci'
|
- 'area/ci'
|
||||||
- 'area/tests'
|
- 'area/tests'
|
||||||
- 'dependencies'
|
- 'dependencies'
|
||||||
|
|||||||
2
Makefile
2
Makefile
@ -44,7 +44,7 @@ release-version:
|
|||||||
|
|
||||||
.PHONY: tag-release
|
.PHONY: tag-release
|
||||||
tag-release:
|
tag-release:
|
||||||
scripts/tag-release.sh
|
scripts/tag-release.sh $(CMD_ARGS)
|
||||||
|
|
||||||
.PHONY: test
|
.PHONY: test
|
||||||
test: binaries/client
|
test: binaries/client
|
||||||
|
|||||||
@ -3,7 +3,7 @@
|
|||||||
"productName": "OpenLens",
|
"productName": "OpenLens",
|
||||||
"description": "OpenLens - Open Source IDE for Kubernetes",
|
"description": "OpenLens - Open Source IDE for Kubernetes",
|
||||||
"homepage": "https://github.com/lensapp/lens",
|
"homepage": "https://github.com/lensapp/lens",
|
||||||
"version": "5.0.0-beta.11",
|
"version": "5.0.0-beta.10",
|
||||||
"main": "static/build/main.js",
|
"main": "static/build/main.js",
|
||||||
"copyright": "© 2021 OpenLens Authors",
|
"copyright": "© 2021 OpenLens Authors",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
|
|||||||
@ -1,10 +1,21 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
while [[ $# -gt 0 ]]; do
|
||||||
|
key="$1"
|
||||||
|
|
||||||
|
case $key in
|
||||||
|
-f|--force)
|
||||||
|
FORCE="--force"
|
||||||
|
shift # past argument
|
||||||
|
;;
|
||||||
|
esac
|
||||||
|
done
|
||||||
|
|
||||||
if [[ `git branch --show-current` =~ ^release/v ]]
|
if [[ `git branch --show-current` =~ ^release/v ]]
|
||||||
then
|
then
|
||||||
VERSION_STRING=$(cat package.json | jq '.version' -r | xargs printf "v%s")
|
VERSION_STRING=$(cat package.json | jq '.version' -r | xargs printf "v%s")
|
||||||
git tag ${VERSION_STRING}
|
git tag ${VERSION_STRING} ${FORCE}
|
||||||
git push ${GIT_REMOTE:-origin} ${VERSION_STRING}
|
git push ${GIT_REMOTE:-origin} ${VERSION_STRING} ${FORCE}
|
||||||
else
|
else
|
||||||
echo "You must be in a release branch"
|
echo "You must be in a release branch"
|
||||||
fi
|
fi
|
||||||
|
|||||||
@ -35,7 +35,7 @@ interface Pre500WorkspaceStoreModel {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
version: "5.0.0-beta.11",
|
version: "5.0.0-beta.10",
|
||||||
run(store) {
|
run(store) {
|
||||||
const hotbars: Hotbar[] = store.get("hotbars");
|
const hotbars: Hotbar[] = store.get("hotbars");
|
||||||
const userDataPath = app.getPath("userData");
|
const userDataPath = app.getPath("userData");
|
||||||
@ -26,11 +26,11 @@ import { joinMigrations } from "../helpers";
|
|||||||
import version500alpha0 from "./5.0.0-alpha.0";
|
import version500alpha0 from "./5.0.0-alpha.0";
|
||||||
import version500alpha2 from "./5.0.0-alpha.2";
|
import version500alpha2 from "./5.0.0-alpha.2";
|
||||||
import version500beta5 from "./5.0.0-beta.5";
|
import version500beta5 from "./5.0.0-beta.5";
|
||||||
import version500beta11 from "./5.0.0-beta.11";
|
import version500beta10 from "./5.0.0-beta.10";
|
||||||
|
|
||||||
export default joinMigrations(
|
export default joinMigrations(
|
||||||
version500alpha0,
|
version500alpha0,
|
||||||
version500alpha2,
|
version500alpha2,
|
||||||
version500beta5,
|
version500beta5,
|
||||||
version500beta11,
|
version500beta10,
|
||||||
);
|
);
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user