From a5bdacb72a52040b01d3db33751d51152bd2933e Mon Sep 17 00:00:00 2001 From: Josh Martinez <37962558+jm4rtinez@users.noreply.github.com> Date: Sat, 22 Oct 2022 18:53:23 -0600 Subject: [PATCH] Prepare to release v0.4.0 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 31 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7829505..660a68b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,3 +2,31 @@ All notable changes to this project will be documented in this file. This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). + +## Version 0.4.0 - 2022-10-22 + +### What's Changed + +#### 💥 Breaking Changes + +- Refactor signatures for the `collect` combinators by [@jm4rtinez] in + [#2](https://github.com/jm4rtinez/neotype_prelude/pull/2) +- Remove the `new` static method from `Pair` by [@jm4rtinez] in + [#4](https://github.com/jm4rtinez/neotype_prelude/pull/4) +- Drop support for Node.js version 14 by [@jm4rtinez] in + [#6](https://github.com/jm4rtinez/neotype_prelude/pull/6) + +#### 🚀 New Features + +- Introduce the `gather` combinators for `Ior` and `Validated` by [@jm4rtinez] + in [#3](https://github.com/jm4rtinez/neotype_prelude/pull/3) + +### New Contributors + +- [@jm4rtinez] made their first contribution in + [#1](https://github.com/jm4rtinez/neotype_prelude/pull/1) + +**Full Changelog**: +https://github.com/jm4rtinez/neotype_prelude/compare/v0.3.0...v0.4.0 + +[@jm4rtinez]: https://github.com/jm4rtinez diff --git a/package-lock.json b/package-lock.json index c303594..2c1590a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@neotype/prelude", - "version": "0.3.0", + "version": "0.4.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@neotype/prelude", - "version": "0.3.0", + "version": "0.4.0", "license": "Apache-2.0", "devDependencies": { "@types/chai": "^4.3.1", diff --git a/package.json b/package.json index dab3c82..64ecac2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@neotype/prelude", - "version": "0.3.0", + "version": "0.4.0", "description": "Functional programming essentials for TypeScript", "repository": { "type": "git",