diff --git a/.changeset/eighty-seas-turn.md b/.changeset/eighty-seas-turn.md deleted file mode 100644 index e7c67e3f4..000000000 --- a/.changeset/eighty-seas-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@primer/octicons': patch ---- - -Adding changesets workflow to octicons for releasing. diff --git a/.changeset/spotty-lemons-admire.md b/.changeset/spotty-lemons-admire.md deleted file mode 100644 index 0c74e80cb..000000000 --- a/.changeset/spotty-lemons-admire.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/octicons": patch ---- - -Add 12px usage guidelines diff --git a/.changeset/ten-toes-doubt.md b/.changeset/ten-toes-doubt.md deleted file mode 100644 index a1289aa67..000000000 --- a/.changeset/ten-toes-doubt.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@primer/octicons": patch ---- - -update: installation instructions diff --git a/CHANGELOG.md b/CHANGELOG.md index a715e673b..ca3cef47b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## 16.1.1 + +### Patch Changes + +- [#681](https://github.com/primer/octicons/pull/681) [`c394d9a`](https://github.com/primer/octicons/commit/c394d9a556666beed4912797fb78f34190796511) Thanks [@jonrohan](https://github.com/jonrohan)! - Adding changesets workflow to octicons for releasing. + +* [#684](https://github.com/primer/octicons/pull/684) [`9ed6154`](https://github.com/primer/octicons/commit/9ed615464cc405d9264cb933d4fe5f05ff14a219) Thanks [@ashygee](https://github.com/ashygee)! - Add 12px usage guidelines + +- [#677](https://github.com/primer/octicons/pull/677) [`777f229`](https://github.com/primer/octicons/commit/777f2290b4662f2d769096ac3c121e61e92a0ff2) Thanks [@benkoshy](https://github.com/benkoshy)! - update: installation instructions + ## 16.1.0 ### 🚀 New features @@ -53,11 +63,13 @@ ## 14.2.2 ### 🐛 Bug fix + - Update `issue-reopened` https://github.com/primer/octicons/pull/633 ## 14.2.1 ### 🐛 Bug fix + - fix vectors for 24px sort icons https://github.com/primer/octicons/pull/627 (🙏 @metonym) ## 14.2.0 @@ -69,6 +81,7 @@ - `sort-desc` https://github.com/primer/octicons/pull/619 ### 🧽 Chores + - Remove unused dependency on nokogiri https://github.com/primer/octicons/pull/609 (🙏 @cschlack) ## 14.1.0 @@ -82,27 +95,27 @@ ### 💥 Breaking changes -- Remove `octoface` https://github.com/primer/octicons/pull/611 -- Rename `git-fork-24` to `repo-forked-24` https://github.com/primer/octicons/pull/593 +- Remove `octoface` https://github.com/primer/octicons/pull/611 +- Rename `git-fork-24` to `repo-forked-24` https://github.com/primer/octicons/pull/593 ### 🚀 New features -- `number` https://github.com/primer/octicons/pull/592 -- `hash` (previously `number`) https://github.com/primer/octicons/pull/592 +- `number` https://github.com/primer/octicons/pull/592 +- `hash` (previously `number`) https://github.com/primer/octicons/pull/592 - `diamond` https://github.com/primer/octicons/pull/616 - `single-select` https://github.com/primer/octicons/pull/612 - `rows` https://github.com/primer/octicons/pull/617 - `columns` https://github.com/primer/octicons/pull/617 -- `issue-draft` https://github.com/primer/octicons/pull/614 +- `issue-draft` https://github.com/primer/octicons/pull/614 ### 💅 Enhancements -- `issue-opened` https://github.com/primer/octicons/pull/614 -- `issue-closed` https://github.com/primer/octicons/pull/614 +- `issue-opened` https://github.com/primer/octicons/pull/614 +- `issue-closed` https://github.com/primer/octicons/pull/614 ### 🐛 Fixes -- Fix 24px `arrow-up` icon https://github.com/primer/octicons/pull/594 +- Fix 24px `arrow-up` icon https://github.com/primer/octicons/pull/594 - Prevent clipping using `overflow: visible` https://github.com/primer/octicons/pull/607 ## 13.0.0 diff --git a/lib/octicons_gem/lib/octicons/version.rb b/lib/octicons_gem/lib/octicons/version.rb index cfef49651..edf45a718 100644 --- a/lib/octicons_gem/lib/octicons/version.rb +++ b/lib/octicons_gem/lib/octicons/version.rb @@ -1,3 +1,3 @@ module Octicons - VERSION = "16.1.0".freeze + VERSION = "16.1.1".freeze end diff --git a/lib/octicons_helper/Gemfile b/lib/octicons_helper/Gemfile index da7482dd8..a195b6214 100644 --- a/lib/octicons_helper/Gemfile +++ b/lib/octicons_helper/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "16.1.0" +gem "octicons", "16.1.1" 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 a18693a87..60c2a2816 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 = "16.1.0".freeze + VERSION = "16.1.1".freeze end diff --git a/lib/octicons_helper/octicons_helper.gemspec b/lib/octicons_helper/octicons_helper.gemspec index 33e558592..df74e471a 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", "16.1.0" + s.add_dependency "octicons", "16.1.1" s.add_dependency "railties" s.add_dependency "actionview" end diff --git a/lib/octicons_jekyll/Gemfile b/lib/octicons_jekyll/Gemfile index 80ce5e95f..30ffa0bf9 100644 --- a/lib/octicons_jekyll/Gemfile +++ b/lib/octicons_jekyll/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "16.1.0" +gem "octicons", "16.1.1" group :development, :test do gem "minitest" diff --git a/lib/octicons_jekyll/jekyll-octicons.gemspec b/lib/octicons_jekyll/jekyll-octicons.gemspec index a7cca863a..5f063f5ab 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", "16.1.0" + s.add_dependency "octicons", "16.1.1" end diff --git a/lib/octicons_jekyll/lib/jekyll-octicons/version.rb b/lib/octicons_jekyll/lib/jekyll-octicons/version.rb index 929515c89..83d189dc8 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 = "16.1.0".freeze + VERSION = "16.1.1".freeze end end diff --git a/lib/octicons_node/package.json b/lib/octicons_node/package.json index 9b409b435..985819f01 100644 --- a/lib/octicons_node/package.json +++ b/lib/octicons_node/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "16.1.0", + "version": "16.1.1", "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 6feeb82bd..38e606f36 100644 --- a/lib/octicons_react/package.json +++ b/lib/octicons_react/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons-react", - "version": "16.1.0", + "version": "16.1.1", "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 751eb6afb..6e87fa8f9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "16.1.0", + "version": "16.1.1", "publishConfig": { "registry": "no registry, don't publish from this package.json." },