Skip to content

Commit

Permalink
Merge pull request #32 from RobertFischer/next
Browse files Browse the repository at this point in the history
Release
  • Loading branch information
RobertFischer authored Dec 5, 2020
2 parents cfb8240 + 4d193df commit 104ca1d
Show file tree
Hide file tree
Showing 28 changed files with 5,037 additions and 53 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.PERSONAL_GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

generate_docs:
postrelease_updates:
needs:
- perform_release
if: needs.perform_release.outputs.released
Expand All @@ -60,12 +60,18 @@ jobs:
- uses: actions/checkout@v2
with:
ref: ${{ github.ref }}
fetch-depth: 2
- uses: actions/setup-node@v2-beta
with:
node-version: "14"
- run: git pull origin
- run: ./script/bootstrap
- run: yarn install --frozen-lockfile
- run: yarn build:docs
env:
NONINTERACTIVE: true
- run: yarn install
- run: yarn bump-deps
- run: yarn build
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "docs(auto-update): update the documentation"
commit_message:
"chore(post-release): committing changes produced during the release"
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,6 @@ typings/

# Nuxt.js build / generate output
.nuxt
dist

# Gatsby files
.cache/
Expand Down Expand Up @@ -118,7 +117,6 @@ index.*.map

*-cache

dist
*.old

fun-promises-*.tgz
Empty file added docs/.nojekyll
Empty file.
56 changes: 56 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
fun-promises Changelog

## [1.2.0](https://github.com/RobertFischer/fun-promises/compare/v1.1.0...v1.2.0) (2020-12-03)


### Features

* **fold:** implements fold in case map and filter don't cut it ([86c010f](https://github.com/RobertFischer/fun-promises/commit/86c010ff5f934602a2a964cb71ebb73697ed7c2a)), closes [#12](https://github.com/RobertFischer/fun-promises/issues/12)
* **tap:** implement 'tap' for peeking at values ([0f4816a](https://github.com/RobertFischer/fun-promises/commit/0f4816ab42fd9f18bf91e179d2c03fed25822f11))


### Reverts

* **release:** the cleanup caused a problem with the autocommitting ([6c03637](https://github.com/RobertFischer/fun-promises/commit/6c03637137923e0581a4a736bcb6bd4aa25c77d4))

## [1.2.0-rc.2](https://github.com/RobertFischer/fun-promises/compare/v1.2.0-rc.1...v1.2.0-rc.2) (2020-12-02)


### Features

* **fold:** implements fold in case map and filter don't cut it ([86c010f](https://github.com/RobertFischer/fun-promises/commit/86c010ff5f934602a2a964cb71ebb73697ed7c2a)), closes [#12](https://github.com/RobertFischer/fun-promises/issues/12)

## [1.2.0-rc.1](https://github.com/RobertFischer/fun-promises/compare/v1.1.0...v1.2.0-rc.1) (2020-12-02)


### Features

* **tap:** implement 'tap' for peeking at values ([0f4816a](https://github.com/RobertFischer/fun-promises/commit/0f4816ab42fd9f18bf91e179d2c03fed25822f11))


### Reverts

* **release:** the cleanup caused a problem with the autocommitting ([6c03637](https://github.com/RobertFischer/fun-promises/commit/6c03637137923e0581a4a736bcb6bd4aa25c77d4))

## [1.1.0-rc.2](https://github.com/RobertFischer/fun-promises/compare/v1.1.0-rc.1...v1.1.0-rc.2) (2020-12-02)


### Features

* **tap:** implement 'tap' for peeking at values ([ce059bd](https://github.com/RobertFischer/fun-promises/commit/ce059bdb12c4706f8bf8189d5b09dadae740fa47))


### Reverts

* **release:** the cleanup caused a problem with the autocommitting ([c9ad636](https://github.com/RobertFischer/fun-promises/commit/c9ad636762e510ce0218f4c13b506cac05f4ab0f))

<!-- @format -->

fun-promises Changelog

## [1.0.0-rc.3](https://github.com/RobertFischer/fun-promises/compare/v1.0.0-rc.2...v1.0.0-rc.3) (2020-11-12)

### Features

- **flatmap and join:** implement the flatMap(Seq) and join methods
([0f699e7](https://github.com/RobertFischer/fun-promises/commit/0f699e767aae76e46ade4b9ae9019f457c9b8450))
1 change: 1 addition & 0 deletions docs/assets/css/main.css

Large diffs are not rendered by default.

Binary file added docs/assets/images/icons.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/icons@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/widgets.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/images/widgets@2x.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 51 additions & 0 deletions docs/assets/js/main.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions docs/assets/js/search.json

Large diffs are not rendered by default.

Loading

0 comments on commit 104ca1d

Please sign in to comment.