Skip to content
This repository has been archived by the owner on May 31, 2022. It is now read-only.

Commit

Permalink
release 0.3.0 (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Gałkowski authored May 14, 2020
1 parent 9cfe31b commit a365c0e
Show file tree
Hide file tree
Showing 3 changed files with 67 additions and 53 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
deno: [0.42.0]
deno: [1.0.0]
name: deno ${{ matrix.deno }} sample
steps:
- uses: actions/checkout@master
Expand Down
18 changes: 16 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,29 @@
# Changelog

All notable changes to this project will be 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).

## [Unreleased]

## [0.3.0] - 2020-05-14

### Added

- adds pick function
- memoize function
- Maybe type and maybe constructor
- mapMaybe function
- partition function
- Either type and its constructors: left, right, jsonError,and error
- Either helpers: partition, tryCatch, and tryCatchAsync
- supports Deno 1.0.0

### Changed

- flatten function flattens by one level instead of Infinity
- locked all std dependencies (`std/testing`) to `v0.32.0`
- locked all std dependency versions
- added better typings for places where types could be ambigous
- migrated to `deno test`
- bumped `std` version to `v0.42.0`
Expand All @@ -26,7 +33,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Removed

## [0.2.0] - 2020-02-06

### Added

- keys function
- omit function
- sort function
Expand Down Expand Up @@ -54,18 +63,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- slice function

### Changed

- added more types
- added missing docs to find
- fixed unintentional mutation in sort function
- sort supports any numbers now, not only 1, 0 and -1

### Removed

- removed doubled `test.ts` file
- removed importmaps completely (check [issue #20](https://github.com/galkowskit/denofun/issues/20))
- removed curry-by-default behaviour

## [v0.1.0] - 2019-07-17

### Added

- compose function
- curry function
- filter function
Expand All @@ -77,6 +90,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- reverse function
- tail function

[Unreleased]: https://github.com/galkowskit/denofun/compare/v0.2.0...HEAD
[unreleased]: https://github.com/galkowskit/denofun/compare/0.3.0...HEAD
[0.3.0]: https://github.com/galkowskit/denofun/compare/v0.2.0...0.3.0
[v0.2.0]: https://github.com/galkowskit/denofun/compare/v0.1.0...v0.2.0
[v0.1.0]: https://github.com/galkowskit/denofun/releases/tag/v0.1.0
Loading

0 comments on commit a365c0e

Please sign in to comment.