Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
k3s
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
k3s
Commits
35313c60
Commit
35313c60
authored
Nov 24, 2014
by
Joe Beda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Script to help mark new versions
parent
3a385a8b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
77 additions
and
0 deletions
+77
-0
mark-new-version.sh
build/mark-new-version.sh
+77
-0
No files found.
build/mark-new-version.sh
0 → 100755
View file @
35313c60
#!/bin/bash
# Copyright 2014 Google Inc. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Bumps the version number by creating a couple of commits.
set
-o
errexit
set
-o
nounset
set
-o
pipefail
KUBE_ROOT
=
$(
dirname
"
${
BASH_SOURCE
}
"
)
/..
NEW_VERSION
=
${
1
-
}
VERSION_REGEX
=
"v([0-9]+).([0-9]+(.[0-9]+)?)"
[[
${
NEW_VERSION
}
=
~
$VERSION_REGEX
]]
||
{
echo
"!!! You must specify the version in the form of '
$VERSION_REGEX
'"
>
&2
exit
1
}
VERSION_MAJOR
=
"
${
BASH_REMATCH
[1]
}
"
VERSION_MINOR
=
"
${
BASH_REMATCH
[2]
}
"
if
!
git diff-index
--quiet
--cached
HEAD
;
then
echo
"!!! You must not have any changes in your index when running this command"
exit
1
fi
if
!
git diff-files
--quiet
pkg/version/base.go
;
then
echo
"!!! You have changes in 'pkg/version/base.go' already."
exit
1
fi
SED
=
sed
if
which gsed &>/dev/null
;
then
SED
=
gsed
fi
if
!
(
"
$SED
"
--version
2>&1 |
grep
-q
GNU
)
;
then
echo
"!!! GNU sed is required. If on OS X, use 'brew install gnu-sed'."
fi
VERSION_FILE
=
"
${
KUBE_ROOT
}
/pkg/version/base.go"
echo
"+++ Updating to
${
NEW_VERSION
}
"
"
$SED
"
-r
-i
-e
"s/gitMajor
\s
+string =
\"
[^
\"
]*
\"
/gitMajor string =
\"
$VERSION_MAJOR
\"
/"
"
${
VERSION_FILE
}
"
"
$SED
"
-r
-i
-e
"s/gitMinor
\s
+string =
\"
[^
\"
]*
\"
/gitMinor string =
\"
$VERSION_MINOR
\"
/"
"
${
VERSION_FILE
}
"
"
$SED
"
-r
-i
-e
"s/gitVersion
\s
+string =
\"
[^
\"
]*
\"
/gitVersion string =
\"
$NEW_VERSION
\"
/"
"
${
VERSION_FILE
}
"
gofmt
-s
-w
"
${
VERSION_FILE
}
"
echo
"+++ Committing version change"
git add
"
${
VERSION_FILE
}
"
git commit
-m
"Kubernetes version
$NEW_VERSION
"
echo
"+++ Tagging version"
git tag
-a
-m
"Kubernetes version
$NEW_VERSION
"
"
${
NEW_VERSION
}
"
echo
"+++ Updating to
${
NEW_VERSION
}
-dev"
"
$SED
"
-r
-i
-e
"s/gitMajor
\s
+string =
\"
[^
\"
]*
\"
/gitMajor string =
\"
$VERSION_MAJOR
\"
/"
"
${
VERSION_FILE
}
"
"
$SED
"
-r
-i
-e
"s/gitMinor
\s
+string =
\"
[^
\"
]*
\"
/gitMinor string =
\"
$VERSION_MINOR
\+\"
/"
"
${
VERSION_FILE
}
"
"
$SED
"
-r
-i
-e
"s/gitVersion
\s
+string =
\"
[^
\"
]*
\"
/gitVersion string =
\"
$NEW_VERSION
-dev
\"
/"
"
${
VERSION_FILE
}
"
gofmt
-s
-w
"
${
VERSION_FILE
}
"
echo
"+++ Committing version change"
git add
"
${
VERSION_FILE
}
"
git commit
-m
"Kubernetes version
${
NEW_VERSION
}
-dev"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment