Skip to content

Commit

Permalink
Bump version to 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kmdkuk committed Nov 6, 2021
1 parent decd341 commit 80bdf71
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 18 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [0.2.0] - 2021-11-06
### Added

- Add service template (#23)
- Use ConfigMap for server.properties (#31)
- Enable config autoreload (#35)
- Support other config (#44)

### Changed

Expand All @@ -22,5 +24,6 @@ This project adheres to [Semantic Versioning](http://semver.org/).

- Implemented a custom resource to bootstrap a simple minecraft server.

[Unreleased]: https://github.com/kmdkuk/MCing/compare/v0.1.0...HEAD
[Unreleased]: https://github.com/kmdkuk/MCing/compare/v0.2.0...HEAD
[0.2.0]: https://github.com/kmdkuk/MCing/compare/v0.1.0...v0.2.0
[0.1.0]: https://github.com/kmdkuk/MCing/compare/5b5e79f3d2cfc113dbabccef148c42be43f4b0ce...v0.1.0
1 change: 1 addition & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,7 @@ test: test-tools
release-build: kustomize
mkdir -p build
$(KUSTOMIZE) build . > build/install.yaml
$(KUSTOMIZE) build config/samples > build/minecraft-sample.yaml

build: $(BUILD_FILES)
mkdir -p $(BIN_DIR)
Expand Down
18 changes: 2 additions & 16 deletions config/samples/server_properties_cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,6 @@ kind: ConfigMap
metadata:
name: mcing-server-props
data:
motd: "[this is test]A Vanilla Minecraft Server powered by MCing"
motd: "A Vanilla Minecraft Server powered by MCing"
pvp: "true"
difficulty: "hard"
---
apiVersion: v1
kind: ConfigMap
metadata:
name: other-props
data:
banned-ips.json: |
[]
banned-players.json: |
[]
whitelist.json: |
[]
ops.json: |
[]
difficulty: "normal"
2 changes: 1 addition & 1 deletion kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ resources:

images:
- name: ghcr.io/kmdkuk/mcing-controller
newTag: 0.1.0
newTag: 0.2.0

0 comments on commit 80bdf71

Please sign in to comment.