Skip to content

Commit

Permalink
0.0.12 Release (#260)
Browse files Browse the repository at this point in the history
* fix: use correct version number

* docs: update changelog
  • Loading branch information
gregoranders authored Dec 28, 2022
1 parent c708ec5 commit b54a14b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
#### 0.0.12 (2022-12-28)

##### Bug Fixes

* use correct version number ([9ee980ee](https://github.com/gregoranders/ts-csv/commit/9ee980eee66a3791c09c8bc634ae7c34f6f3c622))

#### 0.0.11 (2022-12-28)

##### Build System / Dependencies
Expand Down
4 changes: 3 additions & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,9 @@

| Version | Supported |
| ------- | ------------------ |
| 0.0.10 | :white_check_mark: |
| 0.0.12 | :white_check_mark: |
| 0.0.11 | :x: |
| 0.0.10 | :x: |
| 0.0.9 | :x: |
| 0.0.8 | :x: |
| 0.0.7 | :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.10"
libversion = "0.0.12"
```
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.10";
export const libversion = "0.0.12";

// @public
class Parser<T = Record<string, string>> {
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": "@gregoranders/csv",
"version": "0.0.11",
"version": "0.0.12",
"description": "Simple CSV parser in TypeScript",
"scripts": {
"clear": "rimraf ./node_modules ./dist ./test ./package-lock.json ./temp ./docs-tmp",
Expand Down
2 changes: 1 addition & 1 deletion src/index.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe(`${TestSubject.libname} ${TestSubject.libversion} - csv`, () => {
});

it('libversion', () => {
expect(TestSubject.libversion).toBe('0.0.10');
expect(TestSubject.libversion).toBe('0.0.12');
});

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

/**
* library homepage
Expand Down

0 comments on commit b54a14b

Please sign in to comment.