From c248c3328a388bff3af78871d097e990e64022ba Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Sun, 8 May 2022 20:52:08 +0000 Subject: [PATCH] chore(release): 1.0.1 [skip ci] MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## [1.0.1](https://github.com/blephy/simple-rxstate/compare/v1.0.0...v1.0.1) (2022-05-08) ### ci * **github:** use latest node version, split jobs, and improve artifact… ([#37](https://github.com/blephy/simple-rxstate/issues/37)) ([81b1a11](https://github.com/blephy/simple-rxstate/commit/81b1a113c2e1d8c3c182120d707aa664cee37b3a)) --- CHANGELOG.md | 7 +++++++ lib/index.d.ts | 3 +++ lib/index.d.ts.map | 1 + lib/index.js | 3 +++ lib/index.js.map | 1 + package.json | 2 +- 6 files changed, 16 insertions(+), 1 deletion(-) create mode 100644 lib/index.d.ts create mode 100644 lib/index.d.ts.map create mode 100644 lib/index.js create mode 100644 lib/index.js.map diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c92955..cfbf211 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## [1.0.1](https://github.com/blephy/simple-rxstate/compare/v1.0.0...v1.0.1) (2022-05-08) + + +### ci + +* **github:** use latest node version, split jobs, and improve artifact… ([#37](https://github.com/blephy/simple-rxstate/issues/37)) ([81b1a11](https://github.com/blephy/simple-rxstate/commit/81b1a113c2e1d8c3c182120d707aa664cee37b3a)) + ## [1.0.1-alpha.1](https://github.com/blephy/simple-rxstate/compare/v1.0.0...v1.0.1-alpha.1) (2022-05-08) diff --git a/lib/index.d.ts b/lib/index.d.ts new file mode 100644 index 0000000..8dcabca --- /dev/null +++ b/lib/index.d.ts @@ -0,0 +1,3 @@ +declare const TEST = "hello"; +export { TEST }; +//# sourceMappingURL=index.d.ts.map \ No newline at end of file diff --git a/lib/index.d.ts.map b/lib/index.d.ts.map new file mode 100644 index 0000000..12f7b70 --- /dev/null +++ b/lib/index.d.ts.map @@ -0,0 +1 @@ +{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,IAAI,UAAU,CAAC;AAErB,OAAO,EAAE,IAAI,EAAE,CAAC"} \ No newline at end of file diff --git a/lib/index.js b/lib/index.js new file mode 100644 index 0000000..b693807 --- /dev/null +++ b/lib/index.js @@ -0,0 +1,3 @@ +const TEST = 'hello'; +export { TEST }; +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/lib/index.js.map b/lib/index.js.map new file mode 100644 index 0000000..59e8b61 --- /dev/null +++ b/lib/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,MAAM,IAAI,GAAG,OAAO,CAAC;AAErB,OAAO,EAAE,IAAI,EAAE,CAAC"} \ No newline at end of file diff --git a/package.json b/package.json index 5df71ff..c6275c9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-rxstate", - "version": "1.0.1-alpha.1", + "version": "1.0.1", "description": "Simple rxjs based state management system", "author": "Allan Dollé (https://allandolle.fr/)", "homepage": "https://github.com/blephy/simple-rxstate#readme",