https://github.com/embulk/embulk-util-guess
Guess helper for Embulk plugins
https://github.com/embulk/embulk-util-guess
embulk
Last synced: 10 months ago
JSON representation
Guess helper for Embulk plugins
- Host: GitHub
- URL: https://github.com/embulk/embulk-util-guess
- Owner: embulk
- License: apache-2.0
- Created: 2020-10-29T06:57:31.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-07-22T07:07:24.000Z (11 months ago)
- Last Synced: 2025-07-22T09:35:07.275Z (11 months ago)
- Topics: embulk
- Language: Java
- Homepage: https://dev.embulk.org/embulk-util-guess/
- Size: 365 KB
- Stars: 0
- Watchers: 11
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
- Notice: NOTICE
Awesome Lists containing this project
README
Guess helper for Embulk plugins
================================
For Embulk plugin developers
-----------------------------
* [Javadoc](https://dev.embulk.org/embulk-util-guess/)
For Maintainers
----------------
### Release
Modify `version` in `build.gradle` at a detached commit, and then tag the commit with an annotation.
```
git checkout --detach master
(Edit: Remove "-SNAPSHOT" in "version" in build.gradle.)
git add build.gradle
git commit -m "Release vX.Y.Z"
git tag -a vX.Y.Z
(Edit: Write a tag annotation in the changelog format.)
```
See [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) for the changelog format. We adopt a part of it for Git's tag annotation like below.
```
## [X.Y.Z] - YYYY-MM-DD
### Added
- Added a feature.
### Changed
- Changed something.
### Fixed
- Fixed a bug.
```
Push the annotated tag, then. It triggers a release operation on GitHub Actions after approval.
```
git push -u origin vX.Y.Z
```