Skip to content

Commit

Permalink
Merge pull request #61 from danieldelcore/changeset-release/master
Browse files Browse the repository at this point in the history
Version Packages
  • Loading branch information
danieldelcore authored Apr 30, 2020
2 parents 6a1fac7 + 65dceff commit 6cb9544
Show file tree
Hide file tree
Showing 22 changed files with 563 additions and 96 deletions.
38 changes: 0 additions & 38 deletions .changeset/ninety-rivers-thank.md

This file was deleted.

29 changes: 0 additions & 29 deletions .changeset/tender-suits-relate.md

This file was deleted.

55 changes: 55 additions & 0 deletions packages/collector/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
# @trousers/collector

## 3.0.0

### Major Changes

- e6a3323: # Version 3 🎉

This is Trousers' biggest update yet!

Including:

- Support for the CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- insertRule 🏹
- Smaller bundles 🐭
- Custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

## Removed

- withStyles HOC (please use css prop for class components)

### Developer experience

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)
- Adds [manypkg](https://github.com/Thinkmill/manypkg)

- c9c8187: **Trousers v3!**

- CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- prod mode support for `insertRule` 🏹
- Smaller bundles 🐭
- Support for custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

**Dev**

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)

### Patch Changes

- Updated dependencies [e6a3323]
- Updated dependencies [c9c8187]
- @trousers/hash@3.0.0
- @trousers/utils@3.0.0
6 changes: 3 additions & 3 deletions packages/collector/package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"name": "@trousers/collector",
"version": "2.1.1",
"version": "3.0.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@trousers/hash": "2.1.1",
"@trousers/utils": "2.1.1"
"@trousers/hash": "3.0.0",
"@trousers/utils": "3.0.0"
},
"devDependencies": {},
"repository": "https://github.com/danieldelcore/trousers/tree/master/packages/collector"
Expand Down
59 changes: 59 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# @trousers/core

## 3.0.0

### Major Changes

- e6a3323: # Version 3 🎉

This is Trousers' biggest update yet!

Including:

- Support for the CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- insertRule 🏹
- Smaller bundles 🐭
- Custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

## Removed

- withStyles HOC (please use css prop for class components)

### Developer experience

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)
- Adds [manypkg](https://github.com/Thinkmill/manypkg)

- c9c8187: **Trousers v3!**

- CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- prod mode support for `insertRule` 🏹
- Smaller bundles 🐭
- Support for custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

**Dev**

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)

### Patch Changes

- Updated dependencies [e6a3323]
- Updated dependencies [c9c8187]
- @trousers/hash@3.0.0
- @trousers/parser@3.0.0
- @trousers/registry@3.0.0
- @trousers/server@3.0.0
- @trousers/theme@3.0.0
- @trousers/utils@3.0.0
14 changes: 7 additions & 7 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"name": "@trousers/core",
"version": "2.1.1",
"version": "3.0.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"dependencies": {
"@trousers/hash": "2.1.1",
"@trousers/parser": "2.1.1",
"@trousers/registry": "2.1.1",
"@trousers/server": "2.1.1",
"@trousers/theme": "2.1.1",
"@trousers/utils": "2.1.1"
"@trousers/hash": "3.0.0",
"@trousers/parser": "3.0.0",
"@trousers/registry": "3.0.0",
"@trousers/server": "3.0.0",
"@trousers/theme": "3.0.0",
"@trousers/utils": "3.0.0"
},
"devDependencies": {
"react": "^16.8.1"
Expand Down
48 changes: 48 additions & 0 deletions packages/hash/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# @trousers/hash

## 3.0.0

### Major Changes

- e6a3323: # Version 3 🎉

This is Trousers' biggest update yet!

Including:

- Support for the CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- insertRule 🏹
- Smaller bundles 🐭
- Custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

## Removed

- withStyles HOC (please use css prop for class components)

### Developer experience

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)
- Adds [manypkg](https://github.com/Thinkmill/manypkg)

- c9c8187: **Trousers v3!**

- CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- prod mode support for `insertRule` 🏹
- Smaller bundles 🐭
- Support for custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

**Dev**

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)
2 changes: 1 addition & 1 deletion packages/hash/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trousers/hash",
"version": "2.1.1",
"version": "3.0.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
48 changes: 48 additions & 0 deletions packages/parser/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# @trousers/parser

## 3.0.0

### Major Changes

- e6a3323: # Version 3 🎉

This is Trousers' biggest update yet!

Including:

- Support for the CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- insertRule 🏹
- Smaller bundles 🐭
- Custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

## Removed

- withStyles HOC (please use css prop for class components)

### Developer experience

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)
- Adds [manypkg](https://github.com/Thinkmill/manypkg)

- c9c8187: **Trousers v3!**

- CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- prod mode support for `insertRule` 🏹
- Smaller bundles 🐭
- Support for custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

**Dev**

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)
2 changes: 1 addition & 1 deletion packages/parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@trousers/parser",
"version": "2.1.1",
"version": "3.0.0",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
Expand Down
54 changes: 54 additions & 0 deletions packages/registry/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
# @trousers/registry

## 3.0.0

### Major Changes

- e6a3323: # Version 3 🎉

This is Trousers' biggest update yet!

Including:

- Support for the CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- insertRule 🏹
- Smaller bundles 🐭
- Custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

## Removed

- withStyles HOC (please use css prop for class components)

### Developer experience

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)
- Adds [manypkg](https://github.com/Thinkmill/manypkg)

- c9c8187: **Trousers v3!**

- CSS prop 👩‍🎤
- Mono-repo setup and decomposition 📦
- Object notation CSS 🍞
- Theme CSS var package 🎨
- prod mode support for `insertRule` 🏹
- Smaller bundles 🐭
- Support for custom style collectors 🕺
- Trousers package with all exports for backwards compatibility

**Dev**

- Adds [storybook-addon-performance](https://github.com/atlassian-labs/storybook-addon-performance)
- Adds [react-stable-ref](https://github.com/danieldelcore/react-stable-ref) to test for re-renders
- Adds [atlassian/changesets](https://github.com/atlassian/changesets)

### Patch Changes

- Updated dependencies [e6a3323]
- Updated dependencies [c9c8187]
- @trousers/parser@3.0.0
Loading

0 comments on commit 6cb9544

Please sign in to comment.