Skip to content

Commit 86a57ca

Browse files
committed
Bump up version to v1.3.0
1 parent 020b313 commit 86a57ca

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,10 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
66
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
77

8-
## [Unreleased]
8+
## [1.3.0] - 2019-04-19
9+
### Changed
10+
- Changed project language from JavaScript to TypeScript.
11+
912
### Added
1013
- Made TypeScript type definitions accessible. Thanks to @coyotte508.
1114
[PR #23](https://github.com/ryu1kn/csv-writer/pull/23)

README.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -267,6 +267,19 @@ console.log(csvStringifier.stringifyRecords(records));
267267

268268
* `<string>`
269269

270+
271+
## Request Features or Report Bugs
272+
273+
Feature requests and bug reports are very welcome: https://github.com/ryu1kn/csv-writer/issues
274+
275+
A couple of requests from me when you raise an issue on GitHub.
276+
277+
* **Requesting a feature:** Please try to provide the context of why you want the feature. Such as,
278+
in what situation the feature could help you and how, or how the lack of the feature is causing an inconvenience to you.
279+
I can't start thinking of introducing it until I understand how it helps you 🙂
280+
* **Reporting a bug:** If you could provide a runnable code snippet that reproduces the bug, it would be very helpful!
281+
282+
270283
## Development
271284

272285
### Prerequisite

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "csv-writer",
3-
"version": "1.2.0",
3+
"version": "1.3.0",
44
"description": "Convert objects/arrays into a CSV string or write them into a CSV file",
55
"main": "dist/index.js",
66
"types": "src/index.ts",

0 commit comments

Comments
 (0)