From 07ff4fb279f28a9adb90dfb5fdb87e1f68d6e36c Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 15:26:52 -0500 Subject: [PATCH 1/3] Update the bower dependencies --- bower.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/bower.json b/bower.json index cb5bfe9..da92649 100644 --- a/bower.json +++ b/bower.json @@ -16,15 +16,15 @@ "package.json" ], "dependencies": { - "purescript-control": "master", - "purescript-foldable-traversable": "master", - "purescript-maybe": "master", - "purescript-prelude": "master", - "purescript-tuples": "master", - "purescript-unfoldable": "master" + "purescript-control": "^6.0.0", + "purescript-foldable-traversable": "^6.0.0", + "purescript-maybe": "^6.0.0", + "purescript-prelude": "^6.0.0", + "purescript-tuples": "^7.0.0", + "purescript-unfoldable": "^6.0.0" }, "devDependencies": { - "purescript-assert": "master", - "purescript-console": "master" + "purescript-assert": "^6.0.0", + "purescript-console": "^6.0.0" } } From c12fecd83495563d064ca79aeb265b592cda4a0f Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 15:26:52 -0500 Subject: [PATCH 2/3] Update Node to 14 in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b6ebf3a..c69237a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,9 +16,9 @@ jobs: with: purescript: "unstable" - - uses: actions/setup-node@v1 + - uses: actions/setup-node@v2 with: - node-version: "12" + node-version: "14.x" - name: Install dependencies run: | From 06ff83bf0c8900262994985355a7bf550980ae91 Mon Sep 17 00:00:00 2001 From: Jordan Martinez Date: Wed, 27 Apr 2022 15:26:52 -0500 Subject: [PATCH 3/3] Update the changelog --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 13e8ee2..bacca9e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,16 @@ Notable changes to this project are documented in this file. The format is based ## [Unreleased] +Breaking changes: + +New features: + +Bugfixes: + +Other improvements: + +## [v7.0.0](https://github.com/purescript/purescript-nonempty/releases/tag/v7.0.0) - 2022-04-27 + Breaking changes: - Update project and deps to PureScript v0.15.0 (#51 by @JordanMartinez)