Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/embulk/embulk-parser-csv
embulk-parser-csv (w/ embulk-guess-csv)
https://github.com/embulk/embulk-parser-csv
embulk embulk-plugin
Last synced: about 1 month ago
JSON representation
embulk-parser-csv (w/ embulk-guess-csv)
- Host: GitHub
- URL: https://github.com/embulk/embulk-parser-csv
- Owner: embulk
- License: apache-2.0
- Created: 2023-03-22T08:15:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-05-13T04:32:52.000Z (7 months ago)
- Last Synced: 2024-05-13T05:31:12.149Z (7 months ago)
- Topics: embulk, embulk-plugin
- Language: Java
- Homepage: https://www.embulk.org/
- Size: 6.31 MB
- Stars: 0
- Watchers: 10
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# embulk-parser-csv / embulk-guess-csv / embulk-guess-csv_all_strings
This is one of Embulk's "standard" plugins that are embedded in Embulk's executable binary distributions.
The source code had been managed in the same [main repository of Embulk](https://github.com/embulk/embulk) until [`v0.10.33`](https://github.com/embulk/embulk/tree/v0.10.33), and in the [`embulk-standards` repository](https://github.com/embulk/embulk-standards) until [`v0.10.42`](https://github.com/embulk/embulk-standards/tree/v0.10.42).
It has been maintained in the standalone repository since `v0.11.0`.
For Maintainers
----------------### Release
Modify `version` in `build.gradle` at a detached commit, and then tag the commit with an annotation.
```
git checkout --detach main(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
```