Skip to content

Commit a9e3a25

Browse files
chore: update version to v1.0.0-rc1
1 parent 3bc29f3 commit a9e3a25

File tree

12 files changed

+17
-17
lines changed

12 files changed

+17
-17
lines changed

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ stages:
1414
- release
1515

1616
variables:
17-
VERSION: 0.4.0
17+
VERSION: 1.0.0-rc1
1818
CI_JOB_USER: gitlab-ci-token
1919
DOCKER_TLS_CERTDIR: '' # disable TLS
2020
DOCKER_OPTS: ${DOCKER_OPTS} --registry-mirror=https://mirror.gcr.io

.gitlab/ci/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ release-oci:
4343
- git remote set-url origin ${CI_PROJECT_URL/gitlab.com/oauth2:${CI_AUTH_TOKEN}@gitlab.com}.git
4444
- git remote -v
4545
- |
46-
if [ -z "$(echo "$VERSION" | grep -Eo "^[0-9]+\.[0-9]+\.[0-9]+$")" ]; then
46+
if [ -z "$(echo "$VERSION" | grep -Eo "^[0-9]+\.[0-9]+\.[0-9](-[[:alpha:]][[:alnum:]]*(\.[0-9]+)?)?$")" ]; then
4747
echo "VERSION is not semver: `$VERSION`"
4848
exit 1
4949
fi

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# To re-generate a bundle for another specific version without changing the standard setup, you can:
66
# - use the VERSION as arg of the build target (e.g make build VERSION=0.0.2)
77
# - use environment variables to overwrite this value (e.g export VERSION=0.0.2)
8-
VERSION ?= 0.4.0
8+
VERSION ?= 1.0.0-rc1
99

1010
# Get the currently used golang install path (in GOPATH/bin, unless GOBIN is set)
1111
ifeq (,$(shell go env GOBIN))

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.25.0
55
toolchain go1.25.3
66

77
require (
8-
github.com/SlinkyProject/slurm-client v0.4.0-20250912114233-d75113f34f05.0.20251105180332-9c4dc495e409
8+
github.com/SlinkyProject/slurm-client v1.0.0-rc1
99
github.com/golang-jwt/jwt/v5 v5.3.0
1010
github.com/google/go-cmp v0.7.0
1111
github.com/onsi/ginkgo/v2 v2.23.4

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ github.com/Masterminds/semver/v3 v3.3.1/go.mod h1:4V+yj/TJE1HU9XfppCwVMZq3I84lpr
1111
github.com/Microsoft/go-winio v0.6.2 h1:F2VQgta7ecxGYO8k3ZZz3RS8fVIXVxONVUPlNERoyfY=
1212
github.com/Microsoft/go-winio v0.6.2/go.mod h1:yd8OoFMLzJbo9gZq8j5qaps8bJ9aShtEA8Ipt1oGCvU=
1313
github.com/RaveNoX/go-jsoncommentstrip v1.0.0/go.mod h1:78ihd09MekBnJnxpICcwzCMzGrKSKYe4AqU6PDYYpjk=
14-
github.com/SlinkyProject/slurm-client v0.4.0-20250912114233-d75113f34f05.0.20251105180332-9c4dc495e409 h1:2YcGKsGfmL2vM4EMHY/QPBnOK97S5vqWdilip5S5ujE=
15-
github.com/SlinkyProject/slurm-client v0.4.0-20250912114233-d75113f34f05.0.20251105180332-9c4dc495e409/go.mod h1:DnzthV/igby0Rx6xzDwhH+bX//BCXQPHSnjIGhnbS5U=
14+
github.com/SlinkyProject/slurm-client v1.0.0-rc1 h1:LnG57/rmsSfcGgYhlpHySbQ2Qt0cbCS5XWENCnmI+2Y=
15+
github.com/SlinkyProject/slurm-client v1.0.0-rc1/go.mod h1:DnzthV/igby0Rx6xzDwhH+bX//BCXQPHSnjIGhnbS5U=
1616
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d h1:licZJFw2RwpHMqeKTCYkitsPqHNxTmd4SNR5r94FGM8=
1717
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d/go.mod h1:asat636LX7Bqt5lYEZ27JNDcqxfjdBQuJ/MM4CN/Lzo=
1818
github.com/apapsch/go-jsonmerge/v2 v2.0.0 h1:axGnT1gRIfimI7gJifB699GoE/oq+F2MU7Dml6nw9rQ=

helm/slurm-operator-crds/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ apiVersion: v2
44
name: slurm-operator-crds
55
description: Slurm Operator CRDs
66
type: application
7-
version: 0.4.0
7+
version: 1.0.0-rc1
88

99
annotations:
1010
license: Apache-2.0

helm/slurm-operator-crds/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# slurm-operator-crds
22

3-
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
3+
![Version: 1.0.0-rc1](https://img.shields.io/badge/Version-1.0.0--rc1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
44

55
Slurm Operator CRDs
66

helm/slurm-operator/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
dependencies:
22
- name: slurm-operator-crds
33
repository: file://../slurm-operator-crds
4-
version: 0.4.0
5-
digest: sha256:3fef6c1d829dd2fceb278280f3f5e3bff11e653e57f540caef9ba92b2eab4cb6
6-
generated: "2025-09-02T11:49:31.95969921-04:00"
4+
version: 1.0.0-rc1
5+
digest: sha256:fb16024ae5488c58abdee85a6c7c83fe44c45b54351c046762ac5588fde342ab
6+
generated: "2025-11-06T08:37:30.212264059-05:00"

helm/slurm-operator/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ name: slurm-operator
66
description: Slurm Operator
77
type: application
88
appVersion: "25.11"
9-
version: 0.4.0
9+
version: 1.0.0-rc1
1010

1111
annotations:
1212
license: Apache-2.0
@@ -24,6 +24,6 @@ maintainers:
2424

2525
dependencies:
2626
- name: slurm-operator-crds
27-
version: "0.4.0"
27+
version: 1.0.0-rc1
2828
condition: crds.enabled
2929
repository: file://../slurm-operator-crds

helm/slurm-operator/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# slurm-operator
22

3-
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 25.11](https://img.shields.io/badge/AppVersion-25.11-informational?style=flat-square)
3+
![Version: 1.0.0-rc1](https://img.shields.io/badge/Version-1.0.0--rc1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 25.11](https://img.shields.io/badge/AppVersion-25.11-informational?style=flat-square)
44

55
Slurm Operator
66

@@ -22,7 +22,7 @@ Kubernetes: `>= 1.29.0-0`
2222

2323
| Repository | Name | Version |
2424
|------------|------|---------|
25-
| file://../slurm-operator-crds | slurm-operator-crds | 0.4.0 |
25+
| file://../slurm-operator-crds | slurm-operator-crds | 1.0.0-rc1 |
2626

2727
## Values
2828

0 commit comments

Comments
 (0)