Skip to content

Commit

Permalink
Merge pull request #14 from gregoranders/development
Browse files Browse the repository at this point in the history
0.0.7 Release
  • Loading branch information
gregoranders authored Jun 20, 2020
2 parents 989cddf + 0cd5e85 commit aa64095
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 32 deletions.
22 changes: 0 additions & 22 deletions .cceslintrc.js

This file was deleted.

2 changes: 1 addition & 1 deletion .codeclimate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ plugins:
enabled: true
channel: 'eslint-6'
config:
config: .cceslintrc.js
config: .eslintrc-cc.json
extensions:
- .es6
- .js
Expand Down
14 changes: 14 additions & 0 deletions .eslintrc-cc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"extends": [
"eslint:recommended"
],
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
}
},
"env": {
"node": true
}
}
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 0.0.7 (2020-06-20)

##### Chores

* **codeclimate:** move cc config ([2db40082](https://github.com/gregoranders/ts-csv/commit/2db400824d7523a5f095d923a0be66c32dff086d))

#### 0.0.6 (2020-06-20)

##### Build System / Dependencies
Expand Down
3 changes: 2 additions & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@
| Version | Supported |
| ------- | ------------------ |
| 0.0.5 | :white_check_mark: |
| 0.0.7 | :white_check_mark: |
| 0.0.6 | :x: |
| 0.0.5 | :x: |
| 0.0.4 | :x: |
| 0.0.3 | :x: |
| 0.0.2 | :x: |
Expand Down
2 changes: 1 addition & 1 deletion docs/csv.libversion.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ library version
<b>Signature:</b>

```typescript
libversion = "0.0.6"
libversion = "0.0.7"
```
2 changes: 1 addition & 1 deletion etc/csv.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const libname = "@gregoranders/csv";
export const liburl = "https://gregoranders.github.io/ts-csv/";

// @public
export const libversion = "0.0.6";
export const libversion = "0.0.7";

// @public
class Parser<T = Record<string, string>> {
Expand Down
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@gregoranders/csv",
"version": "0.0.6",
"version": "0.0.7",
"description": "Simple CSV parser in TypeScript",
"scripts": {
"clear": "npm run prescript && npm run pretest && rimraf ./node_modules ./package-lock.json ./temp",
Expand Down Expand Up @@ -41,7 +41,9 @@
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint"],
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
Expand All @@ -50,8 +52,7 @@
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module",
"ecmaFeatures": {
}
"ecmaFeatures": {}
},
"rules": {},
"settings": {}
Expand Down
2 changes: 1 addition & 1 deletion src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ describe(`${TestSubject.libname} ${TestSubject.libversion} - csv`, () => {
});

it('libversion', () => {
expect(TestSubject.libversion).toBe('0.0.6');
expect(TestSubject.libversion).toBe('0.0.7');
});

it('liburl', () => {
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const libname = '@gregoranders/csv';
* @public
* @readonly
*/
export const libversion = '0.0.6';
export const libversion = '0.0.7';

/**
* library homepage
Expand Down

0 comments on commit aa64095

Please sign in to comment.