diff --git a/CHANGELOG.md b/CHANGELOG.md
index c960358..bbec1aa 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/SECURITY.md b/SECURITY.md
index 00c3de3..a02e201 100644
--- a/SECURITY.md
+++ b/SECURITY.md
@@ -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: |
diff --git a/docs/csv.libversion.md b/docs/csv.libversion.md
index 9cf4580..6708b72 100644
--- a/docs/csv.libversion.md
+++ b/docs/csv.libversion.md
@@ -9,5 +9,5 @@ library version
Signature:
```typescript
-libversion = "0.0.10"
+libversion = "0.0.12"
```
diff --git a/etc/csv.api.md b/etc/csv.api.md
index 23f6be6..7f5ad0f 100644
--- a/etc/csv.api.md
+++ b/etc/csv.api.md
@@ -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> {
diff --git a/package.json b/package.json
index 4bd4edf..0b80958 100644
--- a/package.json
+++ b/package.json
@@ -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",
diff --git a/src/index.spec.ts b/src/index.spec.ts
index 540e1f0..d586201 100644
--- a/src/index.spec.ts
+++ b/src/index.spec.ts
@@ -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', () => {
diff --git a/src/index.ts b/src/index.ts
index ca0ada1..7ef8830 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -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