Skip to content

Commit

Permalink
Bump up version to v1.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ryu1kn committed Apr 19, 2019
1 parent 020b313 commit 86a57ca
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
## [1.3.0] - 2019-04-19
### Changed
- Changed project language from JavaScript to TypeScript.

### Added
- Made TypeScript type definitions accessible. Thanks to @coyotte508.
[PR #23](https://github.com/ryu1kn/csv-writer/pull/23)
Expand Down
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,19 @@ console.log(csvStringifier.stringifyRecords(records));

* `<string>`


## Request Features or Report Bugs

Feature requests and bug reports are very welcome: https://github.com/ryu1kn/csv-writer/issues

A couple of requests from me when you raise an issue on GitHub.

* **Requesting a feature:** Please try to provide the context of why you want the feature. Such as,
in what situation the feature could help you and how, or how the lack of the feature is causing an inconvenience to you.
I can't start thinking of introducing it until I understand how it helps you 🙂
* **Reporting a bug:** If you could provide a runnable code snippet that reproduces the bug, it would be very helpful!


## Development

### Prerequisite
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "csv-writer",
"version": "1.2.0",
"version": "1.3.0",
"description": "Convert objects/arrays into a CSV string or write them into a CSV file",
"main": "dist/index.js",
"types": "src/index.ts",
Expand Down

0 comments on commit 86a57ca

Please sign in to comment.