Skip to content

Commit aa64095

Browse files
authored
Merge pull request #14 from gregoranders/development
0.0.7 Release
2 parents 989cddf + 0cd5e85 commit aa64095

File tree

10 files changed

+32
-32
lines changed

10 files changed

+32
-32
lines changed

.cceslintrc.js

Lines changed: 0 additions & 22 deletions
This file was deleted.

.codeclimate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ plugins:
1212
enabled: true
1313
channel: 'eslint-6'
1414
config:
15-
config: .cceslintrc.js
15+
config: .eslintrc-cc.json
1616
extensions:
1717
- .es6
1818
- .js

.eslintrc-cc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": [
3+
"eslint:recommended"
4+
],
5+
"parserOptions": {
6+
"ecmaVersion": 2020,
7+
"sourceType": "module",
8+
"ecmaFeatures": {
9+
}
10+
},
11+
"env": {
12+
"node": true
13+
}
14+
}

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 0.0.7 (2020-06-20)
2+
3+
##### Chores
4+
5+
* **codeclimate:** move cc config ([2db40082](https://github.com/gregoranders/ts-csv/commit/2db400824d7523a5f095d923a0be66c32dff086d))
6+
17
#### 0.0.6 (2020-06-20)
28

39
##### Build System / Dependencies

SECURITY.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
66
| Version | Supported |
77
| ------- | ------------------ |
8-
| 0.0.5 | :white_check_mark: |
8+
| 0.0.7 | :white_check_mark: |
99
| 0.0.6 | :x: |
10+
| 0.0.5 | :x: |
1011
| 0.0.4 | :x: |
1112
| 0.0.3 | :x: |
1213
| 0.0.2 | :x: |

docs/csv.libversion.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ library version
99
<b>Signature:</b>
1010

1111
```typescript
12-
libversion = "0.0.6"
12+
libversion = "0.0.7"
1313
```

etc/csv.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export const libname = "@gregoranders/csv";
2121
export const liburl = "https://gregoranders.github.io/ts-csv/";
2222

2323
// @public
24-
export const libversion = "0.0.6";
24+
export const libversion = "0.0.7";
2525

2626
// @public
2727
class Parser<T = Record<string, string>> {

package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gregoranders/csv",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Simple CSV parser in TypeScript",
55
"scripts": {
66
"clear": "npm run prescript && npm run pretest && rimraf ./node_modules ./package-lock.json ./temp",
@@ -41,7 +41,9 @@
4141
"eslintConfig": {
4242
"root": true,
4343
"parser": "@typescript-eslint/parser",
44-
"plugins": ["@typescript-eslint"],
44+
"plugins": [
45+
"@typescript-eslint"
46+
],
4547
"extends": [
4648
"eslint:recommended",
4749
"plugin:@typescript-eslint/recommended",
@@ -50,8 +52,7 @@
5052
"parserOptions": {
5153
"ecmaVersion": 2020,
5254
"sourceType": "module",
53-
"ecmaFeatures": {
54-
}
55+
"ecmaFeatures": {}
5556
},
5657
"rules": {},
5758
"settings": {}

src/index.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ describe(`${TestSubject.libname} ${TestSubject.libversion} - csv`, () => {
1717
});
1818

1919
it('libversion', () => {
20-
expect(TestSubject.libversion).toBe('0.0.6');
20+
expect(TestSubject.libversion).toBe('0.0.7');
2121
});
2222

2323
it('liburl', () => {

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const libname = '@gregoranders/csv';
1818
* @public
1919
* @readonly
2020
*/
21-
export const libversion = '0.0.6';
21+
export const libversion = '0.0.7';
2222

2323
/**
2424
* library homepage

0 commit comments

Comments
 (0)