diff --git a/CHANGELOG.d/breaking_ci-file-split.md b/CHANGELOG.d/breaking_ci-file-split.md deleted file mode 100644 index 4a92b67e..00000000 --- a/CHANGELOG.d/breaking_ci-file-split.md +++ /dev/null @@ -1,10 +0,0 @@ -* Split example CI files into own files; add spago next/legacy - - Previously, the `Continuous-Integration.md` file stored - sample CI files for GitHub Actions in a code block. - - These weren't easy to copy-and-paste, so I've moved them - into their own files with a Readme file explaining them. - - I also distinguish between Spago Legacy (Haskell-version) - from Spago Next (PureScript version) diff --git a/CHANGELOG.d/breaking_purs-update.md b/CHANGELOG.d/breaking_purs-update.md deleted file mode 100644 index 6938f9b7..00000000 --- a/CHANGELOG.d/breaking_purs-update.md +++ /dev/null @@ -1 +0,0 @@ -* Update PureScript to v0.15.13 \ No newline at end of file diff --git a/CHANGELOG.d/breaking_spago-update.md b/CHANGELOG.d/breaking_spago-update.md deleted file mode 100644 index 81bbb86e..00000000 --- a/CHANGELOG.d/breaking_spago-update.md +++ /dev/null @@ -1 +0,0 @@ -* Update Spago to 0.21.0 \ No newline at end of file diff --git a/CHANGELOG.d/feature_falsify-and-other-links.md b/CHANGELOG.d/feature_falsify-and-other-links.md deleted file mode 100644 index e61190c3..00000000 --- a/CHANGELOG.d/feature_falsify-and-other-links.md +++ /dev/null @@ -1 +0,0 @@ -* Link to `falsify` and other property-testing-related links \ No newline at end of file diff --git a/CHANGELOG.d/feature_fp-ts-migration-guide.md b/CHANGELOG.d/feature_fp-ts-migration-guide.md deleted file mode 100644 index 890641de..00000000 --- a/CHANGELOG.d/feature_fp-ts-migration-guide.md +++ /dev/null @@ -1 +0,0 @@ -* Link to `fp-ts`' migration guide from PS to TS \ No newline at end of file diff --git a/CHANGELOG.d/feature_link-boolean-cube.md b/CHANGELOG.d/feature_link-boolean-cube.md deleted file mode 100644 index fc12689a..00000000 --- a/CHANGELOG.d/feature_link-boolean-cube.md +++ /dev/null @@ -1 +0,0 @@ -* Link to Free Boolean Cube \ No newline at end of file diff --git a/CHANGELOG.d/feature_link-to-defeating-polymorphism.md b/CHANGELOG.d/feature_link-to-defeating-polymorphism.md deleted file mode 100644 index 88404515..00000000 --- a/CHANGELOG.d/feature_link-to-defeating-polymorphism.md +++ /dev/null @@ -1 +0,0 @@ -* Add link to GADTs: Defeating Return Type Polymorphism \ No newline at end of file diff --git a/CHANGELOG.d/feature_spago-codebase.md b/CHANGELOG.d/feature_spago-codebase.md deleted file mode 100644 index d17b33cc..00000000 --- a/CHANGELOG.d/feature_spago-codebase.md +++ /dev/null @@ -1 +0,0 @@ -* Adds a table clarifying the difference `spago` Haskell and PureScript codebases \ No newline at end of file diff --git a/CHANGELOG.d/feature_vtas.md b/CHANGELOG.d/feature_vtas.md deleted file mode 100644 index 6c3799f8..00000000 --- a/CHANGELOG.d/feature_vtas.md +++ /dev/null @@ -1,8 +0,0 @@ -* Add an initial explanation for Visible Type Applications (VTAs) - - This change affects the following folders: - - Basic Syntax - - Type-Level Syntax - - Hello World/Type-Level Programming - - Reading through each is needed to get the full picture of VTAs. diff --git a/CHANGELOG.d/fix_effect-monad.md b/CHANGELOG.d/fix_effect-monad.md deleted file mode 100644 index 26d14221..00000000 --- a/CHANGELOG.d/fix_effect-monad.md +++ /dev/null @@ -1 +0,0 @@ -* Fix erroneous Effect example \ No newline at end of file diff --git a/CHANGELOG.d/fix_monad-state.md b/CHANGELOG.d/fix_monad-state.md deleted file mode 100644 index bf80793f..00000000 --- a/CHANGELOG.d/fix_monad-state.md +++ /dev/null @@ -1 +0,0 @@ -* Fix instantiation of `StateT`'s `MonadState` example diff --git a/CHANGELOG.d/fix_update-build-tool-history.md b/CHANGELOG.d/fix_update-build-tool-history.md deleted file mode 100644 index 7c346f1f..00000000 --- a/CHANGELOG.d/fix_update-build-tool-history.md +++ /dev/null @@ -1 +0,0 @@ -* Miscellaneous tweaks to build tool history \ No newline at end of file diff --git a/CHANGELOG.d/internal_rework-changelog.md b/CHANGELOG.d/internal_rework-changelog.md deleted file mode 100644 index f8a05ba0..00000000 --- a/CHANGELOG.d/internal_rework-changelog.md +++ /dev/null @@ -1,6 +0,0 @@ -* Begin using [purs-changelog](https://github.com/purescript-contrib/purescript-up-changelog) to manage changelog entries. - - Previous changelogs were moved into the `old-changelogs` directory. - The previous generated changelogs weren't as useful/readable as just - keeping a manual log. I also think this will be easier to track what - changed as I can add/edit an entry as I make the change itself. diff --git a/CHANGELOG.md b/CHANGELOG.md index bf8006a6..9e725bce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,63 @@ Notable changes to this project are documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). This file is updated via [purs-changelog](https://github.com/JordanMartinez/purescript-up-changelog) +## ps-0.15.x-v0.33.0 + +Breaking changes: + +* Split example CI files into own files; add spago next/legacy (#616 by @JordanMartinez) + + Previously, the `Continuous-Integration.md` file stored + sample CI files for GitHub Actions in a code block. + + These weren't easy to copy-and-paste, so I've moved them + into their own files with a Readme file explaining them. + + I also distinguish between Spago Legacy (Haskell-version) + from Spago Next (PureScript version) + +* Update PureScript to v0.15.13 (#619 by @JordanMartinez) + +* Update Spago to 0.21.0 (#619 by @JordanMartinez) + +New features: + +* Link to `falsify` and other property-testing-related links (#619 by @JordanMartinez) + +* Link to `fp-ts`' migration guide from PS to TS (#619 by @JordanMartinez) + +* Link to Free Boolean Cube (#619 by @JordanMartinez) + +* Add link to GADTs: Defeating Return Type Polymorphism (#619 by @JordanMartinez) + +* Adds a table clarifying the difference `spago` Haskell and PureScript codebases (#619 by @JordanMartinez) + +* Add an initial explanation for Visible Type Applications (VTAs) (#619 by @JordanMartinez) + + This change affects the following folders: + - Basic Syntax + - Type-Level Syntax + - Hello World/Type-Level Programming + + Reading through each is needed to get the full picture of VTAs. + +Bugfixes: + +* Fix erroneous Effect example (#619 by @JordanMartinez) + +* Fix instantiation of `StateT`'s `MonadState` example (#619 by @JordanMartinez) + +* Miscellaneous tweaks to build tool history (#619 by @JordanMartinez) + +Internal: + +* Begin using [purs-changelog](https://github.com/purescript-contrib/purescript-up-changelog) to manage changelog entries. (#616 by @JordanMartinez) + + Previous changelogs were moved into the `old-changelogs` directory. + The previous generated changelogs weren't as useful/readable as just + keeping a manual log. I also think this will be easier to track what + changed as I can add/edit an entry as I make the change itself. + ## Previous Releases For all releases prior to ps-0.15.x-v0.32.0, see [old-changelogs](https://github.com/JordanMartinez/purescript-jordans-reference/blob/latestRelease/old-changelogs)