diff --git a/CHANGELOG.md b/CHANGELOG.md index c8ab5cf4e..59a58d8a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# 9.3.0 + +### 🚀 New Features + +- 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 ### 🚀 New features diff --git a/lib/octicons_gem/lib/octicons/version.rb b/lib/octicons_gem/lib/octicons/version.rb index 3f6f2930b..cd1cf88f9 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.2.0".freeze + VERSION = "9.3.0".freeze end diff --git a/lib/octicons_helper/Gemfile b/lib/octicons_helper/Gemfile index 836c75df5..4b97ed7e1 100644 --- a/lib/octicons_helper/Gemfile +++ b/lib/octicons_helper/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "9.2.0" +gem "octicons", "9.3.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 8cb864672..009ae84b5 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.2.0".freeze + VERSION = "9.3.0".freeze end diff --git a/lib/octicons_helper/octicons_helper.gemspec b/lib/octicons_helper/octicons_helper.gemspec index be23c3a2c..04c1565c5 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.2.0" + s.add_dependency "octicons", "9.3.0" s.add_dependency "rails" end diff --git a/lib/octicons_jekyll/Gemfile b/lib/octicons_jekyll/Gemfile index 1726b9eff..e38ebcde3 100644 --- a/lib/octicons_jekyll/Gemfile +++ b/lib/octicons_jekyll/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "9.2.0" +gem "octicons", "9.3.0" group :development, :test do gem "minitest" diff --git a/lib/octicons_jekyll/jekyll-octicons.gemspec b/lib/octicons_jekyll/jekyll-octicons.gemspec index 90dbfb311..3d758178e 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.2.0" + s.add_dependency "octicons", "9.3.0" end diff --git a/lib/octicons_jekyll/lib/jekyll-octicons/version.rb b/lib/octicons_jekyll/lib/jekyll-octicons/version.rb index 5b9f99d85..b5730a874 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.2.0".freeze + VERSION = "9.3.0".freeze end end diff --git a/lib/octicons_node/package-lock.json b/lib/octicons_node/package-lock.json index 9b75405d0..7450881db 100644 --- a/lib/octicons_node/package-lock.json +++ b/lib/octicons_node/package-lock.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "9.2.0", + "version": "9.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/lib/octicons_node/package.json b/lib/octicons_node/package.json index 012377b35..618f9e277 100644 --- a/lib/octicons_node/package.json +++ b/lib/octicons_node/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "9.2.0", + "version": "9.3.0", "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 f10b9a98e..feec87f9c 100644 --- a/lib/octicons_react/package.json +++ b/lib/octicons_react/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons-react", - "version": "9.2.0", + "version": "9.3.0", "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/src/index.d.ts b/lib/octicons_react/src/index.d.ts index 6b5c17956..d5f70e63d 100644 --- a/lib/octicons_react/src/index.d.ts +++ b/lib/octicons_react/src/index.d.ts @@ -10,7 +10,7 @@ export interface OcticonProps { height?: number icon: Icon size?: number | Size - verticalAlign?: 'middle' | 'text-bottom' | 'text-top' | 'top' + verticalAlign?: 'middle' | 'text-bottom' | 'text-top' | 'top' | 'unset' width?: number } diff --git a/lib/octicons_react/src/index.js b/lib/octicons_react/src/index.js index baa715649..c9431e024 100644 --- a/lib/octicons_react/src/index.js +++ b/lib/octicons_react/src/index.js @@ -62,7 +62,7 @@ Octicon.propTypes = { height: PropTypes.number, icon: PropTypes.func, size: PropTypes.oneOfType([PropTypes.number, PropTypes.oneOf(Object.keys(sizeMap))]), - verticalAlign: PropTypes.oneOf(['middle', 'text-bottom', 'text-top', 'top']), + verticalAlign: PropTypes.oneOf(['middle', 'text-bottom', 'text-top', 'top', 'unset']), width: PropTypes.number } diff --git a/package-lock.json b/package-lock.json index 9d808dec4..a030e2f7e 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,5 +1,5 @@ { - "version": "9.2.0", + "version": "9.3.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index e0ca5dfec..161d803ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "9.2.0", + "version": "9.3.0", "scripts": { "version": "script/version", "test": "ava -v tests/*.js",