Skip to content

Commit

Permalink
Merge pull request #357 from primer/release-9.3.0
Browse files Browse the repository at this point in the history
Octicons 9.3.0
  • Loading branch information
jonrohan committed Nov 20, 2019
2 parents 778c17b + f5455a5 commit 9b73fcf
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 14 deletions.
7 changes: 7 additions & 0 deletions 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
Expand Down
2 changes: 1 addition & 1 deletion lib/octicons_gem/lib/octicons/version.rb
@@ -1,3 +1,3 @@
module Octicons
VERSION = "9.2.0".freeze
VERSION = "9.3.0".freeze
end
2 changes: 1 addition & 1 deletion lib/octicons_helper/Gemfile
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion 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
2 changes: 1 addition & 1 deletion lib/octicons_helper/octicons_helper.gemspec
Expand Up @@ -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
2 changes: 1 addition & 1 deletion lib/octicons_jekyll/Gemfile
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion lib/octicons_jekyll/jekyll-octicons.gemspec
Expand Up @@ -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
2 changes: 1 addition & 1 deletion lib/octicons_jekyll/lib/jekyll-octicons/version.rb
Expand Up @@ -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
2 changes: 1 addition & 1 deletion lib/octicons_node/package-lock.json

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

2 changes: 1 addition & 1 deletion 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.",
Expand Down
2 changes: 1 addition & 1 deletion 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.",
Expand Down
2 changes: 1 addition & 1 deletion lib/octicons_react/src/index.d.ts
Expand Up @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion lib/octicons_react/src/index.js
Expand Up @@ -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
}

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

2 changes: 1 addition & 1 deletion 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",
Expand Down

0 comments on commit 9b73fcf

Please sign in to comment.