Skip to content

Commit

Permalink
chore: release v1.0.0 (#24)
Browse files Browse the repository at this point in the history
* chore: release v1.0.0

* Update CHANGELOG.md

* fix circleci config
  • Loading branch information
egoist committed Nov 14, 2019
1 parent e242c72 commit 5478674
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 3 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,15 @@
# [1.0.0](https://github.com/egoist/majo/compare/v0.8.0...v1.0.0) (2019-11-14)

### Features

- rewrite in typescript ([d07511e](https://github.com/egoist/majo/commit/d07511e268d187d34c856a3742ec6e69afa011b0))

BREAKING CHANGES:

default export is now removed, use named export `majo` instead:

```js
const { majo } = require('majo')
// or
import { majo } from 'majo'
```
4 changes: 2 additions & 2 deletions circle.yml
Expand Up @@ -23,6 +23,6 @@ jobs:
command: yarn test
- run:
name: releae
command: >
echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >>~/.npmrc && \
command: |
echo "//registry.yarnpkg.com/:_authToken=$NPM_TOKEN" >>~/.npmrc \
npx shipjs trigger
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "majo",
"version": "0.8.0",
"version": "1.0.0",
"description": "A minimal module to manipulate files.",
"repository": {
"url": "egoist/majo",
Expand Down

0 comments on commit 5478674

Please sign in to comment.