Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Octicons 9.3.0 #357

Merged
merged 5 commits into from Nov 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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