Skip to content

Commit

Permalink
Prepare v8.0.0 release (#45)
Browse files Browse the repository at this point in the history
* Update CI to build with the latest version of the compiler

* Update the bower repository URL to match the URL in the registry

* Upgrade bower dependencies

* Update the changelog

* Fix tests

Co-authored-by: Thomas Honeyman <admin@thomashoneyman.com>
  • Loading branch information
kl0tl and thomashoneyman committed Feb 26, 2021
1 parent 4792655 commit 97fe8bb
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 16 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,6 @@ jobs:

- name: Set up a PureScript toolchain
uses: purescript-contrib/setup-purescript@main
with:
purescript: "0.14.0-rc5"

- name: Cache PureScript dependencies
uses: actions/cache@v2
Expand Down
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,17 @@ Notable changes to this project are documented in this file. The format is based

## [Unreleased]

Breaking changes (😱!!!):
Breaking changes:

New features:

Bugfixes:

Other improvements:

## [v8.0.0](https://github.com/purescript-contrib/purescript-pathy/releases/tag/v8.0.0) - 2021-02-26

Breaking changes:
- Added support for PureScript 0.14 and dropped support for all previous versions (#42)

New features:
Expand Down
23 changes: 12 additions & 11 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/slamdata/purescript-pathy.git"
"url": "https://github.com/purescript-contrib/purescript-pathy.git"
},
"ignore": [
"**/.*",
Expand All @@ -17,17 +17,18 @@
"package.json"
],
"dependencies": {
"purescript-console": "^4.0.1",
"purescript-exceptions": "^4.0.0",
"purescript-lists": "^5.0.0",
"purescript-partial": "^2.0.0",
"purescript-profunctor": "^4.0.0",
"purescript-strings": "^4.0.0",
"purescript-transformers": "^4.1.0",
"purescript-unsafe-coerce": "^4.0.0",
"purescript-typelevel-prelude": ">=4.0.0 <6.0.0"
"purescript-console": "^5.0.0",
"purescript-exceptions": "^5.0.0",
"purescript-lists": "^6.0.0",
"purescript-partial": "^3.0.0",
"purescript-profunctor": "^5.0.0",
"purescript-strings": "^5.0.0",
"purescript-transformers": "^5.0.0",
"purescript-typelevel-prelude": "^6.0.0",
"purescript-unsafe-coerce": "^5.0.0"
},
"devDependencies": {
"purescript-quickcheck": "^6.0.0"
"purescript-effect": "^3.0.0",
"purescript-quickcheck": "^7.0.0"
}
}
4 changes: 2 additions & 2 deletions test/Main.purs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Prelude

import Data.Maybe (Maybe(..), maybe)
import Data.Newtype (un)
import Data.NonEmpty ((:|))
import Data.Array.NonEmpty (cons')
import Data.String as Str
import Data.String.NonEmpty (NonEmptyString)
import Data.String.NonEmpty (fromString) as NES
Expand Down Expand Up @@ -77,7 +77,7 @@ genAmbigiousName =
let
genNES = PG.genName <#> un Name
in
map Name $ Gen.oneOf $ genNES :|
map Name $ Gen.oneOf $ cons' genNES
[ genNES <#> \a -> a <> (NES.singleton '.')
, genNES <#> \a -> (NES.singleton '.') <> a
, pure (NES.singleton '.')
Expand Down

0 comments on commit 97fe8bb

Please sign in to comment.