diff --git a/CHANGELOG.md b/CHANGELOG.md index 59a58d8a9..1b346041a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,14 @@ +# 9.3.1 + +## Bugfix + +- Workflow icon had a cutoff edge. + # 9.3.0 ### 🚀 New Features -- Workflow icons https://github.com/primer/octicons/pull/356 @ashygee +- Workflow icons https://github.com/primer/octicons/pull/356 @ashygee - Allow 'unset' value for verticalAlign property https://github.com/primer/octicons/pull/354 @Fs00 # 9.2.0 diff --git a/lib/octicons_gem/lib/octicons/version.rb b/lib/octicons_gem/lib/octicons/version.rb index cd1cf88f9..564067bb5 100644 --- a/lib/octicons_gem/lib/octicons/version.rb +++ b/lib/octicons_gem/lib/octicons/version.rb @@ -1,3 +1,3 @@ module Octicons - VERSION = "9.3.0".freeze + VERSION = "9.3.1".freeze end diff --git a/lib/octicons_helper/Gemfile b/lib/octicons_helper/Gemfile index 4b97ed7e1..fdf1a4cb0 100644 --- a/lib/octicons_helper/Gemfile +++ b/lib/octicons_helper/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "9.3.0" +gem "octicons", "9.3.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 009ae84b5..c66d7edd2 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 = "9.3.0".freeze + VERSION = "9.3.1".freeze end diff --git a/lib/octicons_helper/octicons_helper.gemspec b/lib/octicons_helper/octicons_helper.gemspec index 04c1565c5..6f1578918 100644 --- a/lib/octicons_helper/octicons_helper.gemspec +++ b/lib/octicons_helper/octicons_helper.gemspec @@ -13,6 +13,6 @@ Gem::Specification.new do |s| s.require_paths = ["lib"] - s.add_dependency "octicons", "9.3.0" + s.add_dependency "octicons", "9.3.1" s.add_dependency "rails" end diff --git a/lib/octicons_jekyll/Gemfile b/lib/octicons_jekyll/Gemfile index e38ebcde3..8f3ac3fae 100644 --- a/lib/octicons_jekyll/Gemfile +++ b/lib/octicons_jekyll/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "9.3.0" +gem "octicons", "9.3.1" group :development, :test do gem "minitest" diff --git a/lib/octicons_jekyll/jekyll-octicons.gemspec b/lib/octicons_jekyll/jekyll-octicons.gemspec index 3d758178e..18e713b24 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", "9.3.0" + s.add_dependency "octicons", "9.3.1" end diff --git a/lib/octicons_jekyll/lib/jekyll-octicons/version.rb b/lib/octicons_jekyll/lib/jekyll-octicons/version.rb index b5730a874..bdb25b584 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 = "9.3.0".freeze + VERSION = "9.3.1".freeze end end diff --git a/lib/octicons_node/package-lock.json b/lib/octicons_node/package-lock.json index 7450881db..b9528156e 100644 --- a/lib/octicons_node/package-lock.json +++ b/lib/octicons_node/package-lock.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "9.3.0", + "version": "9.3.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/lib/octicons_node/package.json b/lib/octicons_node/package.json index 618f9e277..6b883b492 100644 --- a/lib/octicons_node/package.json +++ b/lib/octicons_node/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "9.3.0", + "version": "9.3.1", "description": "A scalable set of icons handcrafted with <3 by GitHub.", "homepage": "https://octicons.github.com", "author": "GitHub Inc.", diff --git a/lib/octicons_react/package.json b/lib/octicons_react/package.json index feec87f9c..75081f8e6 100644 --- a/lib/octicons_react/package.json +++ b/lib/octicons_react/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons-react", - "version": "9.3.0", + "version": "9.3.1", "description": "A scalable set of icons handcrafted with <3 by GitHub.", "homepage": "https://octicons.github.com", "author": "GitHub, Inc.", diff --git a/package-lock.json b/package-lock.json index a030e2f7e..def7c1b90 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "version": "9.3.0", + "version": "9.3.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 161d803ab..09441fd0a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "9.3.0", + "version": "9.3.1", "scripts": { "version": "script/version", "test": "ava -v tests/*.js",