Skip to content

Commit

Permalink
chore(changeset): version update (#9)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] and github-actions[bot] committed Feb 15, 2021
1 parent f3d211a commit 6982450
Show file tree
Hide file tree
Showing 20 changed files with 117 additions and 59 deletions.
5 changes: 0 additions & 5 deletions .changeset/bright-dots-drop.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/nice-buses-sleep.md

This file was deleted.

8 changes: 0 additions & 8 deletions .changeset/small-shrimps-allow.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/unlucky-months-float.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wicked-plants-compare.md

This file was deleted.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
"rimraf": "^3.0.2",
"size-limit": "^4.9.2",
"snapshot-diff": "^0.8.1",
"svgmoji": "^3.0.0",
"svgmoji": "^3.1.0",
"typescript": "^4.1.5",
"typescript-snapshots-plugin": "^1.7.0"
},
Expand Down
20 changes: 20 additions & 0 deletions packages/svgmoji/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# svgmoji

## 3.1.0

> 2021-02-15
### Minor Changes

- 33a6204f: Add data entrypoints for `github`, `slack` and `discord` shortcodes.

### Patch Changes

- Updated dependencies [7c81be1b]
- Updated dependencies [75b361fc]
- Updated dependencies [088f5d3e]
- Updated dependencies [edd4a29c]
- @svgmoji/core@3.1.0
- @svgmoji/blob@3.1.0
- @svgmoji/noto@3.1.0
- @svgmoji/openmoji@3.1.0
- @svgmoji/twemoji@3.1.0

## 3.0.0

> 2021-01-19
Expand Down
12 changes: 6 additions & 6 deletions packages/svgmoji/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "svgmoji",
"version": "3.0.0",
"version": "3.1.0",
"description": "Consume svg sprites from popular open source emoji libraries.",
"keywords": [],
"homepage": "https://github.com/svgmoji/svgmoji/tree/HEAD/packages/svgmoji",
Expand Down Expand Up @@ -49,11 +49,11 @@
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"@svgmoji/blob": "^3.0.0",
"@svgmoji/core": "^3.0.0",
"@svgmoji/noto": "^3.0.0",
"@svgmoji/openmoji": "^3.0.0",
"@svgmoji/twemoji": "^3.0.0"
"@svgmoji/blob": "^3.1.0",
"@svgmoji/core": "^3.1.0",
"@svgmoji/noto": "^3.1.0",
"@svgmoji/openmoji": "^3.1.0",
"@svgmoji/twemoji": "^3.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
15 changes: 15 additions & 0 deletions packages/svgmoji__blob/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @svgmoji/blob

## 3.1.0

> 2021-02-15
### Minor Changes

- 75b361fc: Update svg files to latest versions and fix some issues with missing files. Also fix missing emoji for `openmoji`.
- 088f5d3e: Make `@svgmoji/core` a direct dependency for all icon packages.

### Patch Changes

- Updated dependencies [7c81be1b]
- Updated dependencies [edd4a29c]
- @svgmoji/core@3.1.0

## 3.0.0

> 2021-01-19
Expand Down
4 changes: 2 additions & 2 deletions packages/svgmoji__blob/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@svgmoji/blob",
"version": "3.0.0",
"version": "3.1.0",
"description": "The svgmoji sprites for the [`blobmoji`](https://github.com/c1710/blobmoji) library.",
"keywords": [
"emoji",
Expand Down Expand Up @@ -40,7 +40,7 @@
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"@svgmoji/core": "^3.0.0"
"@svgmoji/core": "^3.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
9 changes: 9 additions & 0 deletions packages/svgmoji__core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @svgmoji/core

## 3.1.0

> 2021-02-15
### Minor Changes

- 7c81be1b: Add `popularEmoji` to the `BaseMoji` abstract class. Now when the provided query is absent in `Moji#search` the `popularEmoji` are returned. This can also be set in the constructor with an array of unicode / hexcode representations of the emoji. The default values are taken from the top **100** frequently used emoji as listed [here](https://home.unicode.org/emoji/emoji-frequency/).
- edd4a29c: Add `maxResults` to `Moji#search` options. The default value is `20`.

## 3.0.0

> 2021-01-19
Expand Down
2 changes: 1 addition & 1 deletion packages/svgmoji__core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@svgmoji/core",
"version": "3.0.0",
"version": "3.1.0",
"description": "Utilities forked from emojibase for working with svgmoji",
"keywords": [
"emoji",
Expand Down
15 changes: 15 additions & 0 deletions packages/svgmoji__noto/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @svgmoji/noto

## 3.1.0

> 2021-02-15
### Minor Changes

- 75b361fc: Update svg files to latest versions and fix some issues with missing files. Also fix missing emoji for `openmoji`.
- 088f5d3e: Make `@svgmoji/core` a direct dependency for all icon packages.

### Patch Changes

- Updated dependencies [7c81be1b]
- Updated dependencies [edd4a29c]
- @svgmoji/core@3.1.0

## 3.0.0

> 2021-01-19
Expand Down
4 changes: 2 additions & 2 deletions packages/svgmoji__noto/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@svgmoji/noto",
"version": "3.0.0",
"version": "3.1.0",
"description": "The svgmoji sprites for the [`noto-emoji`](https://github.com/googlefonts/noto-emoji) library.",
"keywords": [
"emoji",
Expand Down Expand Up @@ -41,7 +41,7 @@
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"@svgmoji/core": "^3.0.0"
"@svgmoji/core": "^3.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
15 changes: 15 additions & 0 deletions packages/svgmoji__openmoji/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @svgmoji/openmoji

## 3.1.0

> 2021-02-15
### Minor Changes

- 75b361fc: Update svg files to latest versions and fix some issues with missing files. Also fix missing emoji for `openmoji`.
- 088f5d3e: Make `@svgmoji/core` a direct dependency for all icon packages.

### Patch Changes

- Updated dependencies [7c81be1b]
- Updated dependencies [edd4a29c]
- @svgmoji/core@3.1.0

## 3.0.0

> 2021-01-19
Expand Down
4 changes: 2 additions & 2 deletions packages/svgmoji__openmoji/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@svgmoji/openmoji",
"version": "3.0.0",
"version": "3.1.0",
"description": "The svgmoji sprites for the [`openmoji`](https://github.com/hfg-gmuend/openmoji) library.",
"keywords": [
"emoji",
Expand Down Expand Up @@ -39,7 +39,7 @@
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"@svgmoji/core": "^3.0.0"
"@svgmoji/core": "^3.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
15 changes: 15 additions & 0 deletions packages/svgmoji__twemoji/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @svgmoji/twemoji

## 3.1.0

> 2021-02-15
### Minor Changes

- 75b361fc: Update svg files to latest versions and fix some issues with missing files. Also fix missing emoji for `openmoji`.
- 088f5d3e: Make `@svgmoji/core` a direct dependency for all icon packages.

### Patch Changes

- Updated dependencies [7c81be1b]
- Updated dependencies [edd4a29c]
- @svgmoji/core@3.1.0

## 3.0.0

> 2021-01-19
Expand Down
4 changes: 2 additions & 2 deletions packages/svgmoji__twemoji/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@svgmoji/twemoji",
"version": "3.0.0",
"version": "3.1.0",
"description": "The svgmoji sprites for the [`twemoji`](https://github.com/twitter/twemoji) library provided by Twitter.",
"keywords": [
"emoji",
Expand Down Expand Up @@ -39,7 +39,7 @@
],
"dependencies": {
"@babel/runtime": "^7.12.5",
"@svgmoji/core": "^3.0.0"
"@svgmoji/core": "^3.1.0"
},
"publishConfig": {
"access": "public"
Expand Down
22 changes: 11 additions & 11 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion support/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"@changesets/read": "^0.4.6",
"@changesets/types": "^3.3.0",
"@remirror/core-helpers": "1.0.0-next.60",
"@svgmoji/core": "3.0.0",
"@svgmoji/core": "3.1.0",
"@types/babel__core": "^7.1.12",
"@types/lodash.isequal": "^4.5.5",
"@types/markdown-table": "^2.0.0",
Expand Down

0 comments on commit 6982450

Please sign in to comment.