Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/embulk/embulk-util-csv

CSV utility for Embulk plugins
https://github.com/embulk/embulk-util-csv

csv embulk

Last synced: 3 months ago
JSON representation

CSV utility for Embulk plugins

Awesome Lists containing this project

README

        

CSV utility for Embulk plugins
===============================

This is a tokenizer of the CSV (comma-separated values) format extracted as a standalone library from [`embulk-parser-csv`](https://github.com/embulk/embulk-standards).

For Embulk plugin developers
-----------------------------

* [Javadoc](https://dev.embulk.org/embulk-util-csv/)

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
```