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
8 changes: 5 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -248,15 +248,17 @@ jobs:
- name: Determine next version
id: version
run: |
NEXT=$(scripts/next-version.sh)
LEVEL=$(scripts/next-version.sh --level-only)
# Invoked through bash rather than relying on the executable bit, which is easy to lose on a
# checkout from a Windows working tree.
NEXT=$(bash scripts/next-version.sh)
LEVEL=$(bash scripts/next-version.sh --level-only)
echo "next=$NEXT" >> "$GITHUB_OUTPUT"
echo "Bumping $LEVEL to $NEXT"

- name: Apply version and changelog
run: |
sed -i "s|^pluginVersion *=.*|pluginVersion = ${{ steps.version.outputs.next }}|" gradle.properties
scripts/prepare-changelog.sh
bash scripts/prepare-changelog.sh
./gradlew patchChangelog

# [skip ci] keeps this push from re-triggering the workflow
Expand Down
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

# eGovConstant Changelog

## [2.0.0]
<!--
Notes for the next release go under [Unreleased]. The release job in .github/workflows/build.yml runs
patchChangelog, which renames this heading to the version it computed - so writing the version here by
hand would produce two sections with the same number.
-->
## [Unreleased]
### Added
- 영어/한글 UI 동시 지원. IDE 언어 설정을 따르며, 기존에 하드코딩돼 있던 문자열 40여 개를 리소스 번들로 분리.
- 한글 초성 검색. `ㅅㅇㅈ` 로 `사용자`, `승인자`, `사업장` 등을 찾을 수 있습니다.
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pluginGroup = com.github.yohanki.egovconstant
pluginName = eGovConstant
pluginRepositoryUrl = https://github.com/YoHanKi/eGovConstant
# SemVer format -> https://semver.org
pluginVersion = 2.0.0
pluginVersion = 1.6.4

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 243
Expand Down
Empty file modified scripts/next-version.sh
100644 → 100755
Empty file.
Empty file modified scripts/prepare-changelog.sh
100644 → 100755
Empty file.
Loading