From 6c35b09894842b14c1da2e74106d67eb8c4145f1 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 8 May 2023 21:13:49 +0000 Subject: [PATCH] Version Packages --- .changeset/dry-buttons-leave.md | 7 ------- .changeset/rude-balloons-jam.md | 5 ----- CHANGELOG.md | 12 ++++++++++++ lib/octicons_gem/lib/octicons/version.rb | 2 +- lib/octicons_helper/Gemfile | 2 +- lib/octicons_helper/lib/octicons_helper/version.rb | 2 +- lib/octicons_helper/octicons_helper.gemspec | 2 +- lib/octicons_jekyll/Gemfile | 2 +- lib/octicons_jekyll/jekyll-octicons.gemspec | 2 +- lib/octicons_jekyll/lib/jekyll-octicons/version.rb | 2 +- lib/octicons_node/package.json | 2 +- lib/octicons_react/package.json | 2 +- package.json | 2 +- 13 files changed, 22 insertions(+), 22 deletions(-) delete mode 100644 .changeset/dry-buttons-leave.md delete mode 100644 .changeset/rude-balloons-jam.md diff --git a/.changeset/dry-buttons-leave.md b/.changeset/dry-buttons-leave.md deleted file mode 100644 index c617f0d73..000000000 --- a/.changeset/dry-buttons-leave.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@primer/octicons': major ---- - -Remove support for `Octicon` -Update peer dependency React version to support >=16.3 -Update icons to use React.forwardRef diff --git a/.changeset/rude-balloons-jam.md b/.changeset/rude-balloons-jam.md deleted file mode 100644 index 8252196b0..000000000 --- a/.changeset/rude-balloons-jam.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/octicons": minor ---- - -Add 12px `×` icon diff --git a/CHANGELOG.md b/CHANGELOG.md index a836fc0bb..d4a4d9820 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## 19.0.0 + +### Major Changes + +- [#943](https://github.com/primer/octicons/pull/943) [`a38ae2d2`](https://github.com/primer/octicons/commit/a38ae2d2cf0b51259be0ab9bc19052c4ddc64a09) Thanks [@broccolinisoup](https://github.com/broccolinisoup)! - Remove support for `Octicon` + Update peer dependency React version to support >=16.3 + Update icons to use React.forwardRef + +### Minor Changes + +- [#937](https://github.com/primer/octicons/pull/937) [`6c94e0e8`](https://github.com/primer/octicons/commit/6c94e0e851c5c5b30cb7ddf73899cde54bf8e205) Thanks [@gavinmn](https://github.com/gavinmn)! - Add 12px `×` icon + ## 18.3.0 ### Minor Changes diff --git a/lib/octicons_gem/lib/octicons/version.rb b/lib/octicons_gem/lib/octicons/version.rb index 5d65ecc05..055ce9144 100644 --- a/lib/octicons_gem/lib/octicons/version.rb +++ b/lib/octicons_gem/lib/octicons/version.rb @@ -1,3 +1,3 @@ module Octicons - VERSION = "18.3.0".freeze + VERSION = "19.0.0".freeze end diff --git a/lib/octicons_helper/Gemfile b/lib/octicons_helper/Gemfile index 7cd1a58c3..27690bf4b 100644 --- a/lib/octicons_helper/Gemfile +++ b/lib/octicons_helper/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "18.3.0" +gem "octicons", "19.0.0" gem "rails" group :development, :test do diff --git a/lib/octicons_helper/lib/octicons_helper/version.rb b/lib/octicons_helper/lib/octicons_helper/version.rb index aabfe9f70..b7761162c 100644 --- a/lib/octicons_helper/lib/octicons_helper/version.rb +++ b/lib/octicons_helper/lib/octicons_helper/version.rb @@ -1,3 +1,3 @@ module OcticonsHelper - VERSION = "18.3.0".freeze + VERSION = "19.0.0".freeze end diff --git a/lib/octicons_helper/octicons_helper.gemspec b/lib/octicons_helper/octicons_helper.gemspec index 33fc4194f..5f6ce609c 100644 --- a/lib/octicons_helper/octicons_helper.gemspec +++ b/lib/octicons_helper/octicons_helper.gemspec @@ -13,7 +13,7 @@ Gem::Specification.new do |s| s.require_paths = ["lib"] - s.add_dependency "octicons", "18.3.0" + s.add_dependency "octicons", "19.0.0" s.add_dependency "railties" s.add_dependency "actionview" end diff --git a/lib/octicons_jekyll/Gemfile b/lib/octicons_jekyll/Gemfile index 3a52220ea..101098d6e 100644 --- a/lib/octicons_jekyll/Gemfile +++ b/lib/octicons_jekyll/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "18.3.0" +gem "octicons", "19.0.0" group :development, :test do gem "minitest" diff --git a/lib/octicons_jekyll/jekyll-octicons.gemspec b/lib/octicons_jekyll/jekyll-octicons.gemspec index 8a60538a7..60628cf45 100644 --- a/lib/octicons_jekyll/jekyll-octicons.gemspec +++ b/lib/octicons_jekyll/jekyll-octicons.gemspec @@ -14,5 +14,5 @@ Gem::Specification.new do |s| s.require_paths = ["lib"] s.add_dependency "jekyll", ">= 3.6", "< 5.0" - s.add_dependency "octicons", "18.3.0" + s.add_dependency "octicons", "19.0.0" end diff --git a/lib/octicons_jekyll/lib/jekyll-octicons/version.rb b/lib/octicons_jekyll/lib/jekyll-octicons/version.rb index 525b1bdee..cf4bf994c 100644 --- a/lib/octicons_jekyll/lib/jekyll-octicons/version.rb +++ b/lib/octicons_jekyll/lib/jekyll-octicons/version.rb @@ -3,6 +3,6 @@ module Liquid; class Tag; end; end module Jekyll class Octicons < Liquid::Tag - VERSION = "18.3.0".freeze + VERSION = "19.0.0".freeze end end diff --git a/lib/octicons_node/package.json b/lib/octicons_node/package.json index 01f0823a5..e97c98b70 100644 --- a/lib/octicons_node/package.json +++ b/lib/octicons_node/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "18.3.0", + "version": "19.0.0", "description": "A scalable set of icons handcrafted with <3 by GitHub.", "homepage": "https://primer.style/octicons", "author": "GitHub Inc.", diff --git a/lib/octicons_react/package.json b/lib/octicons_react/package.json index 553e9578a..2bc62a623 100644 --- a/lib/octicons_react/package.json +++ b/lib/octicons_react/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons-react", - "version": "18.3.0", + "version": "19.0.0", "description": "A scalable set of icons handcrafted with <3 by GitHub.", "homepage": "https://primer.style/octicons", "author": "GitHub, Inc.", diff --git a/package.json b/package.json index be96bdc02..9fa20fb6a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "18.3.0", + "version": "19.0.0", "publishConfig": { "registry": "no registry, don't publish from this package.json." },