Lines Matching full:major

19 $ MAJOR=1 MINOR=7 PATCH=0 # Set appropriately for new release
39 convention of `v<major>.<minor>.x`, while the tags include the patch version
40 `v<major>.<minor>.<patch>`. For example, the same branch `v1.7.x`
53 $ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$((MINOR+1)).0'\1/' \
55 $ sed -i s/$MAJOR.$MINOR.$PATCH/$MAJOR.$((MINOR+1)).0/ \
58 $ git commit -a -m "Start $MAJOR.$((MINOR+1)).0 development cycle"
65 $ git checkout -b v$MAJOR.$MINOR.x \
66 …$(git log --pretty=format:%H --grep "^Start $MAJOR.$((MINOR+1)).0 development cycle$" upstream/mas…
67 $ git push upstream v$MAJOR.$MINOR.x
78 $ echo "## gRPC Java $MAJOR.$MINOR.0 Release Notes" && echo && \
79 …git shortlog "$(git merge-base upstream/v$MAJOR.$((MINOR-1)).x upstream/v$MAJOR.$MINOR.x)"..upstre…
81 …git log --oneline "$(git merge-base v$MAJOR.$((MINOR-1)).0 upstream/v$MAJOR.$MINOR.x)"..v$MAJOR.$(…
100 $ git checkout v$MAJOR.$MINOR.x
101 $ git pull upstream v$MAJOR.$MINOR.x
102 $ git checkout -b release-v$MAJOR.$MINOR.$PATCH
108 $ git commit -a -m "Update README etc to reference $MAJOR.$MINOR.$PATCH"
118 $ git commit -a -m "Bump version to $MAJOR.$MINOR.$PATCH"
119 $ git tag -a v$MAJOR.$MINOR.$PATCH -m "Version $MAJOR.$MINOR.$PATCH"
126 …$ sed -i 's/[0-9]\+\.[0-9]\+\.[0-9]\+\(.*CURRENT_GRPC_VERSION\)/'$MAJOR.$MINOR.$((PATCH+1))-SNAPSH…
128 $ sed -i s/$MAJOR.$MINOR.$PATCH/$MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT/ \
131 $ git commit -a -m "Bump version to $MAJOR.$MINOR.$((PATCH+1))-SNAPSHOT"
137 $ git checkout v$MAJOR.$MINOR.x
138 $ git merge --ff-only release-v$MAJOR.$MINOR.$PATCH
139 $ git push upstream v$MAJOR.$MINOR.x
140 $ git push upstream v$MAJOR.$MINOR.$PATCH
182 $ git cherry-pick v$MAJOR.$MINOR.$PATCH^
208 The description should include any major fixes or features since the last release.
226 …/search.maven.org/remotecontent?filepath=io/grpc/grpc-all/$MAJOR.$MINOR.$PATCH/grpc-all-$MAJOR.$MI…
232 git commit -m "Javadoc for $MAJOR.$MINOR.$PATCH"