Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
- Fix the problem of creating a user verification in the background is not strict.
- Fix init namespace error
- Ace editor optimization

1.0.1 / 2018-11-22
==================

Expand Down
6 changes: 3 additions & 3 deletions bump.sh
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ if [ "$CONFIRM0" = "Y" ]; then
else
git checkout -b $RELEASE_BRANCH
fi
echo "$(tput setaf 2)成功切换到分支: [$RELEASE_BRANCH] $(tput sgr0)"
echo "$(tput setaf 2) Success checkout to branch: [$RELEASE_BRANCH] $(tput sgr0)"
else
echo "拒绝切换分支,退出!"
echo "Refuse to switch branches and quit!"
exit 1
fi

Expand All @@ -82,7 +82,7 @@ if [ "$CONFIRM1" = "Y" ]; then
git changelog --no-merges --tag $NEXT_VERSION $CHANGELOG

COMMITLOG="
发布版本 v$NEXT_VERSION
Release v$NEXT_VERSION

$(git changelog -x -n -p -l)
"
Expand Down
8 changes: 4 additions & 4 deletions hack/kubernetes/dependency/mysql.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ spec:
value: root
resources:
limits:
cpu: '0.5'
memory: 0.5Gi
cpu: '1'
memory: 2Gi
requests:
cpu: '0.5'
memory: 0.5Gi
cpu: '1'
memory: 2Gi
---
apiVersion: v1
kind: Service
Expand Down
8 changes: 4 additions & 4 deletions hack/kubernetes/dependency/rabbitmq.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ spec:
image: 'rabbitmq:3.7.8-management'
resources:
limits:
cpu: '0.5'
memory: 0.5Gi
cpu: '1'
memory: 1Gi
requests:
cpu: '0.5'
memory: 0.5Gi
cpu: '1'
memory: 1Gi
---
apiVersion: v1
kind: Service
Expand Down