Skip to content
This repository has been archived by the owner on Oct 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #216 from agile-ts/changeset-release/master
Browse files Browse the repository at this point in the history
Next Release
  • Loading branch information
bennobuilder authored Oct 17, 2021
2 parents e69eeb4 + 55a28bc commit 081125a
Show file tree
Hide file tree
Showing 23 changed files with 333 additions and 57 deletions.
33 changes: 0 additions & 33 deletions .changeset/purple-scissors-float.md

This file was deleted.

29 changes: 29 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @agile-ts/api

## 0.0.25

### Patch Changes

- 36b235a: #### ❗️ Breaking Change

```ts
MY_STATE.persist('persistKey'); -> MY_STATE.persist({key: 'persistKey'});
```

#### :rocket: New Feature

- `core`
- [#214](https://github.com/agile-ts/agile/pull/214) add migration callback ([@bennodev19](https://github.com/bennodev19))

#### :nail_care: Polish

- `logger`
- [#210](https://github.com/agile-ts/agile/pull/210) Refactor logger ([@bennodev19](https://github.com/bennodev19))
- `api`, `core`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#209](https://github.com/agile-ts/agile/pull/209) Outsource react hooks ([@bennodev19](https://github.com/bennodev19))

#### Committers: 1

- BennoDev ([@bennodev19](https://github.com/bennodev19))

- Updated dependencies [36b235a]
- @agile-ts/utils@0.0.11

## 0.0.24

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agile-ts/api",
"version": "0.0.24",
"version": "0.0.25",
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
Expand Down Expand Up @@ -43,7 +43,7 @@
"@agile-ts/utils": "file:../utils"
},
"dependencies": {
"@agile-ts/utils": "^0.0.10"
"@agile-ts/utils": "^0.0.11"
},
"publishConfig": {
"access": "public"
Expand Down
30 changes: 30 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# Change Log

## 0.2.7

### Patch Changes

- 36b235a: #### ❗️ Breaking Change

```ts
MY_STATE.persist('persistKey'); -> MY_STATE.persist({key: 'persistKey'});
```

#### :rocket: New Feature

- `core`
- [#214](https://github.com/agile-ts/agile/pull/214) add migration callback ([@bennodev19](https://github.com/bennodev19))

#### :nail_care: Polish

- `logger`
- [#210](https://github.com/agile-ts/agile/pull/210) Refactor logger ([@bennodev19](https://github.com/bennodev19))
- `api`, `core`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#209](https://github.com/agile-ts/agile/pull/209) Outsource react hooks ([@bennodev19](https://github.com/bennodev19))

#### Committers: 1

- BennoDev ([@bennodev19](https://github.com/bennodev19))

- Updated dependencies [36b235a]
- @agile-ts/logger@0.0.11
- @agile-ts/utils@0.0.11

## 0.2.6

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agile-ts/core",
"version": "0.2.6",
"version": "0.2.7",
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
Expand Down Expand Up @@ -55,10 +55,10 @@
"@agile-ts/utils": "file:../utils"
},
"dependencies": {
"@agile-ts/utils": "^0.0.10"
"@agile-ts/utils": "^0.0.11"
},
"peerDependencies": {
"@agile-ts/logger": "^0.0.10"
"@agile-ts/logger": "^0.0.11"
},
"peerDependenciesMeta": {
"@agile-ts/logger": {
Expand Down
26 changes: 26 additions & 0 deletions packages/cra-template-agile-typescript/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# cra-template-agile-typescript

## 0.0.12

### Patch Changes

- 36b235a: #### ❗️ Breaking Change

```ts
MY_STATE.persist('persistKey'); -> MY_STATE.persist({key: 'persistKey'});
```

#### :rocket: New Feature

- `core`
- [#214](https://github.com/agile-ts/agile/pull/214) add migration callback ([@bennodev19](https://github.com/bennodev19))

#### :nail_care: Polish

- `logger`
- [#210](https://github.com/agile-ts/agile/pull/210) Refactor logger ([@bennodev19](https://github.com/bennodev19))
- `api`, `core`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#209](https://github.com/agile-ts/agile/pull/209) Outsource react hooks ([@bennodev19](https://github.com/bennodev19))

#### Committers: 1

- BennoDev ([@bennodev19](https://github.com/bennodev19))

## 0.0.11

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cra-template-agile-typescript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cra-template-agile-typescript",
"version": "0.0.11",
"version": "0.0.12",
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
Expand All @@ -18,8 +18,8 @@
"install:clean": "shx rm -rf dist && shx rm -rf node_modules && yarn install"
},
"devDependencies": {
"@agile-ts/core": "^0.2.6",
"@agile-ts/react": "^0.2.2",
"@agile-ts/core": "^0.2.7",
"@agile-ts/react": "^0.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
Expand Down
26 changes: 26 additions & 0 deletions packages/cra-template-agile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# cra-template-agile

## 0.0.12

### Patch Changes

- 36b235a: #### ❗️ Breaking Change

```ts
MY_STATE.persist('persistKey'); -> MY_STATE.persist({key: 'persistKey'});
```

#### :rocket: New Feature

- `core`
- [#214](https://github.com/agile-ts/agile/pull/214) add migration callback ([@bennodev19](https://github.com/bennodev19))

#### :nail_care: Polish

- `logger`
- [#210](https://github.com/agile-ts/agile/pull/210) Refactor logger ([@bennodev19](https://github.com/bennodev19))
- `api`, `core`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#209](https://github.com/agile-ts/agile/pull/209) Outsource react hooks ([@bennodev19](https://github.com/bennodev19))

#### Committers: 1

- BennoDev ([@bennodev19](https://github.com/bennodev19))

## 0.0.11

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/cra-template-agile/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cra-template-agile",
"version": "0.0.11",
"version": "0.0.12",
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
Expand All @@ -18,8 +18,8 @@
"install:clean": "shx rm -rf dist && shx rm -rf node_modules && yarn install"
},
"devDependencies": {
"@agile-ts/core": "^0.2.6",
"@agile-ts/react": "^0.2.2",
"@agile-ts/core": "^0.2.7",
"@agile-ts/react": "^0.2.3",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3"
Expand Down
29 changes: 29 additions & 0 deletions packages/event/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# Change Log

## 0.0.14

### Patch Changes

- 36b235a: #### ❗️ Breaking Change

```ts
MY_STATE.persist('persistKey'); -> MY_STATE.persist({key: 'persistKey'});
```

#### :rocket: New Feature

- `core`
- [#214](https://github.com/agile-ts/agile/pull/214) add migration callback ([@bennodev19](https://github.com/bennodev19))

#### :nail_care: Polish

- `logger`
- [#210](https://github.com/agile-ts/agile/pull/210) Refactor logger ([@bennodev19](https://github.com/bennodev19))
- `api`, `core`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#209](https://github.com/agile-ts/agile/pull/209) Outsource react hooks ([@bennodev19](https://github.com/bennodev19))

#### Committers: 1

- BennoDev ([@bennodev19](https://github.com/bennodev19))

- Updated dependencies [36b235a]
- @agile-ts/core@0.2.7

## 0.0.13

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/event/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agile-ts/event",
"version": "0.0.13",
"version": "0.0.14",
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
Expand Down Expand Up @@ -45,7 +45,7 @@
},
"peerDependencies": {
"react": "^16.13.1",
"@agile-ts/core": "^0.2.6"
"@agile-ts/core": "^0.2.7"
},
"publishConfig": {
"access": "public"
Expand Down
29 changes: 29 additions & 0 deletions packages/logger/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @agile-ts/logger

## 0.0.11

### Patch Changes

- 36b235a: #### ❗️ Breaking Change

```ts
MY_STATE.persist('persistKey'); -> MY_STATE.persist({key: 'persistKey'});
```

#### :rocket: New Feature

- `core`
- [#214](https://github.com/agile-ts/agile/pull/214) add migration callback ([@bennodev19](https://github.com/bennodev19))

#### :nail_care: Polish

- `logger`
- [#210](https://github.com/agile-ts/agile/pull/210) Refactor logger ([@bennodev19](https://github.com/bennodev19))
- `api`, `core`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#209](https://github.com/agile-ts/agile/pull/209) Outsource react hooks ([@bennodev19](https://github.com/bennodev19))

#### Committers: 1

- BennoDev ([@bennodev19](https://github.com/bennodev19))

- Updated dependencies [36b235a]
- @agile-ts/utils@0.0.11

## 0.0.10

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/logger/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@agile-ts/logger",
"version": "0.0.10",
"version": "0.0.11",
"author": "BennoDev",
"license": "MIT",
"homepage": "https://agile-ts.org/",
Expand Down Expand Up @@ -42,7 +42,7 @@
"@agile-ts/utils": "file:../utils"
},
"dependencies": {
"@agile-ts/utils": "^0.0.10"
"@agile-ts/utils": "^0.0.11"
},
"publishConfig": {
"access": "public"
Expand Down
29 changes: 29 additions & 0 deletions packages/multieditor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,34 @@
# @agile-ts/multieditor

## 0.0.24

### Patch Changes

- 36b235a: #### ❗️ Breaking Change

```ts
MY_STATE.persist('persistKey'); -> MY_STATE.persist({key: 'persistKey'});
```

#### :rocket: New Feature

- `core`
- [#214](https://github.com/agile-ts/agile/pull/214) add migration callback ([@bennodev19](https://github.com/bennodev19))

#### :nail_care: Polish

- `logger`
- [#210](https://github.com/agile-ts/agile/pull/210) Refactor logger ([@bennodev19](https://github.com/bennodev19))
- `api`, `core`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue`
- [#209](https://github.com/agile-ts/agile/pull/209) Outsource react hooks ([@bennodev19](https://github.com/bennodev19))

#### Committers: 1

- BennoDev ([@bennodev19](https://github.com/bennodev19))

- Updated dependencies [36b235a]
- @agile-ts/core@0.2.7

## 0.0.23

### Patch Changes
Expand Down
Loading

0 comments on commit 081125a

Please sign in to comment.