https://github.com/embulk/embulk-util-retryhelper
Utility library for retries
https://github.com/embulk/embulk-util-retryhelper
embulk
Last synced: 3 months ago
JSON representation
Utility library for retries
- Host: GitHub
- URL: https://github.com/embulk/embulk-util-retryhelper
- Owner: embulk
- License: apache-2.0
- Created: 2020-07-22T02:10:24.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-30T05:01:14.000Z (over 1 year ago)
- Last Synced: 2025-01-09T23:54:30.266Z (4 months ago)
- Topics: embulk
- Language: Java
- Homepage:
- Size: 560 KB
- Stars: 0
- Watchers: 8
- Forks: 2
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
embulk-util-retryhelper
========================Utility library for retries.
Versions and compatibility
---------------------------Please remember to specify a version of this library when you use it. This is just a helper library to build a plugin. The interfaces may change per library version for improvements, optimization, and catch-up.
For Embulk plugin developers
-----------------------------* [Javadoc](https://dev.embulk.org/embulk-util-retryhelper/)
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
```