https://github.com/embulk/embulk-util-text
Embulk text processor for Embulk plugins
https://github.com/embulk/embulk-util-text
embulk
Last synced: 13 days ago
JSON representation
Embulk text processor for Embulk plugins
- Host: GitHub
- URL: https://github.com/embulk/embulk-util-text
- Owner: embulk
- License: apache-2.0
- Created: 2020-08-07T09:32:36.000Z (almost 6 years ago)
- Default Branch: main
- Last Pushed: 2024-04-16T01:59:17.000Z (about 2 years ago)
- Last Synced: 2026-03-12T03:53:43.268Z (4 months ago)
- Topics: embulk
- Language: Java
- Homepage: https://dev.embulk.org/embulk-util-text/
- Size: 244 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
Embulk text processor for Embulk plugins
=========================================
For Embulk plugin developers
-----------------------------
* [Javadoc](https://dev.embulk.org/embulk-util-text/)
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
```