Skip to content

Commit

Permalink
versioning and changelog updates
Browse files Browse the repository at this point in the history
  • Loading branch information
heyjul3s committed Jan 28, 2021
1 parent 427cc0e commit a9bc3b5
Show file tree
Hide file tree
Showing 12 changed files with 61 additions and 12 deletions.
16 changes: 16 additions & 0 deletions packages/artifak/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# artifak

## 2.0.1

### Patch Changes

- Fix flex basis for FlexCol
- Correct width output for Flex
- Fix Media regex to include px units
- Add window check for useMatchMedia
- Typings fix for Generator
- Updated dependencies [undefined]
- @artifak/component-generator@2.0.1
- @artifak/flex@1.1.6
- @artifak/media@1.0.2
- @artifak/usematchmedia@1.0.2
- @artifak/usewindowsize@1.0.2

## 2.0.0

### Major Changes
Expand Down
12 changes: 6 additions & 6 deletions packages/artifak/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "artifak",
"version": "2.0.0",
"version": "2.0.1",
"description": "A set of React UI primitives to help you build your component UI system",
"author": "Julian Low",
"homepage": "https://github.com/heyjul3s/artifak#readme",
Expand Down Expand Up @@ -44,15 +44,15 @@
},
"dependencies": {
"@artifak/block": "^1.1.5",
"@artifak/component-generator": "^2.0.0",
"@artifak/flex": "^1.1.5",
"@artifak/component-generator": "^2.0.1",
"@artifak/flex": "^1.1.6",
"@artifak/fluidsizing": "^1.0.1",
"@artifak/grid": "^1.1.5",
"@artifak/imagery": "^1.0.7",
"@artifak/media": "^1.0.1",
"@artifak/media": "^1.0.2",
"@artifak/typography": "^2.0.0",
"@artifak/usematchmedia": "^1.0.1",
"@artifak/usewindowsize": "^1.0.1"
"@artifak/usematchmedia": "^1.0.2",
"@artifak/usewindowsize": "^1.0.2"
},
"devDependencies": {
"@artifak/bundler": "^1.1.3"
Expand Down
6 changes: 6 additions & 0 deletions packages/component-generator/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @artifak/component-generator

## 2.0.1

### Patch Changes

- Fix typings for createComponents and createStyledComponent

## 2.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/component-generator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/component-generator",
"version": "2.0.0",
"version": "2.0.1",
"description": "Component generator utility for Artifak",
"author": "Julian Low",
"license": "MIT",
Expand Down
9 changes: 9 additions & 0 deletions packages/flex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @artifak/flex

## 1.1.6

### Patch Changes

- Fix flex basis for FlexCol
- Force calculated width output to only 2 decimal places
- Updated dependencies [undefined]
- @artifak/component-generator@2.0.1

## 1.1.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/flex/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/flex",
"version": "1.1.5",
"version": "1.1.6",
"description": "A styled-component Flex grid component for your layout needs.",
"keywords": [
"react",
Expand Down Expand Up @@ -59,6 +59,6 @@
"styled-components": ">=5.2.1"
},
"dependencies": {
"@artifak/component-generator": "^2.0.0"
"@artifak/component-generator": "^2.0.1"
}
}
6 changes: 6 additions & 0 deletions packages/media/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @artifak/media

## 1.0.2

### Patch Changes

- Fix mediaBounds regex to include px units

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/media/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/media",
"version": "1.0.1",
"version": "1.0.2",
"description": "Artifak media query mixin",
"keywords": [],
"author": "Julian Low",
Expand Down
6 changes: 6 additions & 0 deletions packages/usematchmedia/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @artifak/usematchmedia

## 1.0.2

### Patch Changes

- Add window object check for useMatchMedia

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/usematchmedia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/usematchmedia",
"version": "1.0.1",
"version": "1.0.2",
"description": "A React hook for matching media queries.",
"keywords": [],
"author": "Julian Low",
Expand Down
6 changes: 6 additions & 0 deletions packages/usewindowsize/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @artifak/usewindowsize

## 1.0.2

### Patch Changes

- Additional tests for resize event for useWindowSize

## 1.0.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/usewindowsize/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@artifak/usewindowsize",
"version": "1.0.1",
"version": "1.0.2",
"description": "A React hook that returns the window size on resize.",
"keywords": [],
"author": "Julian Low",
Expand Down

0 comments on commit a9bc3b5

Please sign in to comment.