Skip to content

Commit

Permalink
Merge branch 'development' into latestRelease
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanMartinez committed Dec 22, 2020
2 parents 07b34d4 + e98e789 commit 0e5601b
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@ implementation to use. But how does it do this? How do Type Classes work?
Dictionaries are what enable a function/value to magically appear in the
implementation of a function's body. The below code is a summary of
this article about type class 'dictionaries':
this article about type class 'dictionaries' written by Jonathan Fischoff:
https://web.archive.org/web/20200116160958/https://www.schoolofhaskell.com/user/jfischoff/instances-and-dictionaries
I could not explain it clearer nor more concisely than they did.
I could not explain it clearer nor more concisely than Jonathan did.
-}

-- This code....
Expand Down
40 changes: 32 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,17 +1,40 @@
# Change Log

## [Unreleased](https://github.com/JordanMartinez/purescript-jordans-reference/tree/HEAD)
## [ps-0.13.x-v0.27.1](https://github.com/JordanMartinez/purescript-jordans-reference/tree/ps-0.13.x-v0.27.1) (2020-12-22)
[Full Changelog](https://github.com/JordanMartinez/purescript-jordans-reference/compare/ps-0.13.x-v0.27.0...ps-0.13.x-v0.27.1)

[Full Changelog](https://github.com/JordanMartinez/purescript-jordans-reference/compare/ps-0.13.x-v0.26.2...HEAD)
**Implemented enhancements:**

- Link to Don't Think, Just Defunctionalize [\#531](https://github.com/JordanMartinez/purescript-jordans-reference/issues/531) [[Design-Patterns](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Design-Patterns)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)]
- Document `Internal` modules [\#527](https://github.com/JordanMartinez/purescript-jordans-reference/issues/527) [[Design-Patterns](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Design-Patterns)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)]
- Link to 'not yet awesome purescript' repo [\#526](https://github.com/JordanMartinez/purescript-jordans-reference/issues/526) [[Getting-Started](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Getting-Started)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)]
- Explain "project-specific prelude" pattern for reducing import statements across a project [\#521](https://github.com/JordanMartinez/purescript-jordans-reference/issues/521) [[Design-Patterns](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Design-Patterns)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)]
- Link to Configure Web Browser for Convenient Pursuit Lookup [\#519](https://github.com/JordanMartinez/purescript-jordans-reference/issues/519) [[Getting-Started](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Getting-Started)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)]
- Link to clear explanation of contravariant functors that describes variance clearly [\#518](https://github.com/JordanMartinez/purescript-jordans-reference/issues/518) [[Design-Patterns](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Design-Patterns)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)]
- Link to 'Haskeller Competency Matrix' [\#495](https://github.com/JordanMartinez/purescript-jordans-reference/issues/495) [[Getting-Started](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Getting-Started)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)]
- Define issue templates [\#493](https://github.com/JordanMartinez/purescript-jordans-reference/issues/493) [[Meta](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Meta)] [[enhancement](https://github.com/JordanMartinez/purescript-jordans-reference/labels/enhancement)] [[good first issue](https://github.com/JordanMartinez/purescript-jordans-reference/labels/good%20first%20issue)]

**Fixed bugs:**

- Link down on typeclasses section [\#530](https://github.com/JordanMartinez/purescript-jordans-reference/issues/530) [[Syntax](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Syntax)] [[bug](https://github.com/JordanMartinez/purescript-jordans-reference/labels/bug)]
- Add documentation for String/Char escape sequences [\#523](https://github.com/JordanMartinez/purescript-jordans-reference/issues/523) [[Syntax](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Syntax)] [[bug](https://github.com/JordanMartinez/purescript-jordans-reference/labels/bug)]
- Potential confusing trap in REPL section [\#522](https://github.com/JordanMartinez/purescript-jordans-reference/issues/522) [[Getting-Started](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Getting-Started)] [[bug](https://github.com/JordanMartinez/purescript-jordans-reference/labels/bug)]

**Closed issues:**

- Populate URL in repo's "About" section [\#525](https://github.com/JordanMartinez/purescript-jordans-reference/issues/525)
- Link to works by Simon Peyton Jones [\#524](https://github.com/JordanMartinez/purescript-jordans-reference/issues/524) [[Helpful-Links](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Helpful-Links)]
- Link to Keyword Argument pattern [\#528](https://github.com/JordanMartinez/purescript-jordans-reference/issues/528) [[Design-Patterns](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Design-Patterns)]

**Merged pull requests:**

- fix typo [\#520](https://github.com/JordanMartinez/purescript-jordans-reference/pull/520) ([joprice](https://github.com/joprice))
- Make next major release: ps-0.13.x-v0.27.0 [\#529](https://github.com/JordanMartinez/purescript-jordans-reference/pull/529) ([JordanMartinez](https://github.com/JordanMartinez))

## [ps-0.13.x-v0.27.0](https://github.com/JordanMartinez/purescript-jordans-reference/tree/ps-0.13.x-v0.27.0) (2020-12-22)
[Full Changelog](https://github.com/JordanMartinez/purescript-jordans-reference/compare/ps-0.13.x-v0.26.2...ps-0.13.x-v0.27.0)

**Closed issues:**

- Populate URL in repo's "About" section [\#525](https://github.com/JordanMartinez/purescript-jordans-reference/issues/525)
- Link to works by Simon Peyton Jones [\#524](https://github.com/JordanMartinez/purescript-jordans-reference/issues/524) [[Helpful-Links](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Helpful-Links)]

## [ps-0.13.x-v0.26.2](https://github.com/JordanMartinez/purescript-jordans-reference/tree/ps-0.13.x-v0.26.2) (2020-09-19)
[Full Changelog](https://github.com/JordanMartinez/purescript-jordans-reference/compare/ps-0.13.x-v0.26.1...ps-0.13.x-v0.26.2)
Expand Down Expand Up @@ -61,7 +84,6 @@
**Merged pull requests:**

- Convert to `mdbook` website [\#511](https://github.com/JordanMartinez/purescript-jordans-reference/pull/511) ([JordanMartinez](https://github.com/JordanMartinez))
- Remove monads don't compose explanation [\#510](https://github.com/JordanMartinez/purescript-jordans-reference/pull/510) ([JordanMartinez](https://github.com/JordanMartinez))

## [ps-0.13.x-v0.25.2](https://github.com/JordanMartinez/purescript-jordans-reference/tree/ps-0.13.x-v0.25.2) (2020-08-28)
[Full Changelog](https://github.com/JordanMartinez/purescript-jordans-reference/compare/ps-0.13.x-v0.25.1...ps-0.13.x-v0.25.2)
Expand Down Expand Up @@ -145,6 +167,8 @@

**Merged pull requests:**

- fix typo [\#520](https://github.com/JordanMartinez/purescript-jordans-reference/pull/520) ([joprice](https://github.com/joprice))
- Remove monads don't compose explanation [\#510](https://github.com/JordanMartinez/purescript-jordans-reference/pull/510) ([JordanMartinez](https://github.com/JordanMartinez))
- Surgery on 0.14 syntax branch [\#502](https://github.com/JordanMartinez/purescript-jordans-reference/pull/502) ([JordanMartinez](https://github.com/JordanMartinez))
- Remove extra backticks [\#486](https://github.com/JordanMartinez/purescript-jordans-reference/pull/486) ([ursi](https://github.com/ursi))
- Add more recent link for GADTs/tagless discussion [\#479](https://github.com/JordanMartinez/purescript-jordans-reference/pull/479) ([razcore-art](https://github.com/razcore-art))
Expand Down Expand Up @@ -342,6 +366,7 @@
**Merged pull requests:**

- Make next major release: ps-0.13.x-v0.19.0 [\#381](https://github.com/JordanMartinez/purescript-jordans-reference/pull/381) ([JordanMartinez](https://github.com/JordanMartinez))
- Make next major release: ps-0.13.x-v0.16.0 [\#344](https://github.com/JordanMartinez/purescript-jordans-reference/pull/344) [[Release-PR](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Release-PR)] ([JordanMartinez](https://github.com/JordanMartinez))

## [ps-0.13.x-v0.18.2](https://github.com/JordanMartinez/purescript-jordans-reference/tree/ps-0.13.x-v0.18.2) (2019-09-19)
[Full Changelog](https://github.com/JordanMartinez/purescript-jordans-reference/compare/ps-0.13.x-v0.18.1...ps-0.13.x-v0.18.2)
Expand Down Expand Up @@ -468,7 +493,6 @@

**Merged pull requests:**

- Make next major release: ps-0.13.x-v0.16.0 [\#344](https://github.com/JordanMartinez/purescript-jordans-reference/pull/344) [[Release-PR](https://github.com/JordanMartinez/purescript-jordans-reference/labels/Release-PR)] ([JordanMartinez](https://github.com/JordanMartinez))
- Alternative laws chapter [\#342](https://github.com/JordanMartinez/purescript-jordans-reference/pull/342) ([crisoagf](https://github.com/crisoagf))

## [ps-0.12.x-v0.15.1](https://github.com/JordanMartinez/purescript-jordans-reference/tree/ps-0.12.x-v0.15.1) (2019-05-25)
Expand Down Expand Up @@ -1184,4 +1208,4 @@



\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*

0 comments on commit 0e5601b

Please sign in to comment.