Skip to content

Commit b54a14b

Browse files
authored
0.0.12 Release (#260)
* fix: use correct version number * docs: update changelog
1 parent c708ec5 commit b54a14b

File tree

7 files changed

+14
-6
lines changed

7 files changed

+14
-6
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
#### 0.0.12 (2022-12-28)
2+
3+
##### Bug Fixes
4+
5+
* use correct version number ([9ee980ee](https://github.com/gregoranders/ts-csv/commit/9ee980eee66a3791c09c8bc634ae7c34f6f3c622))
6+
17
#### 0.0.11 (2022-12-28)
28

39
##### Build System / Dependencies

SECURITY.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44

55
| Version | Supported |
66
| ------- | ------------------ |
7-
| 0.0.10 | :white_check_mark: |
7+
| 0.0.12 | :white_check_mark: |
8+
| 0.0.11 | :x: |
9+
| 0.0.10 | :x: |
810
| 0.0.9 | :x: |
911
| 0.0.8 | :x: |
1012
| 0.0.7 | :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.10"
12+
libversion = "0.0.12"
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.10";
24+
export const libversion = "0.0.12";
2525

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@gregoranders/csv",
3-
"version": "0.0.11",
3+
"version": "0.0.12",
44
"description": "Simple CSV parser in TypeScript",
55
"scripts": {
66
"clear": "rimraf ./node_modules ./dist ./test ./package-lock.json ./temp ./docs-tmp",

src/index.spec.ts

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

2020
it('libversion', () => {
21-
expect(TestSubject.libversion).toBe('0.0.10');
21+
expect(TestSubject.libversion).toBe('0.0.12');
2222
});
2323

2424
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.10';
21+
export const libversion = '0.0.12';
2222

2323
/**
2424
* library homepage

0 commit comments

Comments
 (0)