diff --git a/CHANGELOG.md b/CHANGELOG.md index d3423c2c6..6fc40f9b3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## 14.1.0 + +### 🚀 New Features + +- `git-pull-request-draft` https://github.com/primer/octicons/pull/613 +- `git-pull-request-closed` https://github.com/primer/octicons/pull/613 + ## 14.0.0 ### 💥 Breaking changes diff --git a/icons/git-pull-request-closed-16.svg b/icons/git-pull-request-closed-16.svg new file mode 100644 index 000000000..28074cd95 --- /dev/null +++ b/icons/git-pull-request-closed-16.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/git-pull-request-closed-24.svg b/icons/git-pull-request-closed-24.svg new file mode 100644 index 000000000..5b08fdc6a --- /dev/null +++ b/icons/git-pull-request-closed-24.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/git-pull-request-draft-16.svg b/icons/git-pull-request-draft-16.svg new file mode 100644 index 000000000..3cf6b06ef --- /dev/null +++ b/icons/git-pull-request-draft-16.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/git-pull-request-draft-24.svg b/icons/git-pull-request-draft-24.svg new file mode 100644 index 000000000..c8d86e938 --- /dev/null +++ b/icons/git-pull-request-draft-24.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/lib/octicons_gem/lib/octicons/version.rb b/lib/octicons_gem/lib/octicons/version.rb index bdbf2e9c6..47f9a4371 100644 --- a/lib/octicons_gem/lib/octicons/version.rb +++ b/lib/octicons_gem/lib/octicons/version.rb @@ -1,3 +1,3 @@ module Octicons - VERSION = "14.0.0".freeze + VERSION = "14.1.0".freeze end diff --git a/lib/octicons_helper/Gemfile b/lib/octicons_helper/Gemfile index 6c6ebdcae..468270657 100644 --- a/lib/octicons_helper/Gemfile +++ b/lib/octicons_helper/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "14.0.0" +gem "octicons", "14.1.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 822745abc..1658237e8 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 = "14.0.0".freeze + VERSION = "14.1.0".freeze end diff --git a/lib/octicons_helper/octicons_helper.gemspec b/lib/octicons_helper/octicons_helper.gemspec index e9521d240..c28561301 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", "14.0.0" + s.add_dependency "octicons", "14.1.0" s.add_dependency "railties" s.add_dependency "actionview" end diff --git a/lib/octicons_jekyll/Gemfile b/lib/octicons_jekyll/Gemfile index 194ebb988..a3b250022 100644 --- a/lib/octicons_jekyll/Gemfile +++ b/lib/octicons_jekyll/Gemfile @@ -2,7 +2,7 @@ source "https://rubygems.org" gemspec -gem "octicons", "14.0.0" +gem "octicons", "14.1.0" group :development, :test do gem "minitest" diff --git a/lib/octicons_jekyll/jekyll-octicons.gemspec b/lib/octicons_jekyll/jekyll-octicons.gemspec index 5b20b8485..17f2f6282 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", "14.0.0" + s.add_dependency "octicons", "14.1.0" end diff --git a/lib/octicons_jekyll/lib/jekyll-octicons/version.rb b/lib/octicons_jekyll/lib/jekyll-octicons/version.rb index dcfed20be..ad486ffd0 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 = "14.0.0".freeze + VERSION = "14.1.0".freeze end end diff --git a/lib/octicons_node/package.json b/lib/octicons_node/package.json index c5ca60c07..61350773a 100644 --- a/lib/octicons_node/package.json +++ b/lib/octicons_node/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons", - "version": "14.0.0", + "version": "14.1.0", "description": "A scalable set of icons handcrafted with <3 by GitHub.", "homepage": "https://primer.style/octicons", "author": "GitHub Inc.", @@ -53,4 +53,4 @@ "github/no-then": 0 } } -} \ No newline at end of file +} diff --git a/lib/octicons_react/package.json b/lib/octicons_react/package.json index 3169d0112..a137c3da8 100644 --- a/lib/octicons_react/package.json +++ b/lib/octicons_react/package.json @@ -1,6 +1,6 @@ { "name": "@primer/octicons-react", - "version": "14.0.0", + "version": "14.1.0", "description": "A scalable set of icons handcrafted with <3 by GitHub.", "homepage": "https://primer.style/octicons", "author": "GitHub, Inc.", @@ -57,4 +57,4 @@ "engines": { "node": ">=8" } -} \ No newline at end of file +} diff --git a/lib/octicons_react/src/__tests__/__snapshots__/octicon.js.snap b/lib/octicons_react/src/__tests__/__snapshots__/octicon.js.snap index 49834dc95..bf7fb20e3 100644 --- a/lib/octicons_react/src/__tests__/__snapshots__/octicon.js.snap +++ b/lib/octicons_react/src/__tests__/__snapshots__/octicon.js.snap @@ -7,7 +7,7 @@ exports[`An icon component matches snapshot 1`] = ` fill="currentColor" height="16" role="img" - style="display: inline-block; user-select: none; vertical-align: text-bottom;" + style="display: inline-block; user-select: none; vertical-align: text-bottom; overflow: visible;" viewBox="0 0 16 16" width="16" > diff --git a/lib/octicons_styled/package.json b/lib/octicons_styled/package.json index f899fa9ea..14c518c73 100644 --- a/lib/octicons_styled/package.json +++ b/lib/octicons_styled/package.json @@ -1,6 +1,6 @@ { "name": "@primer/styled-octicons", - "version": "14.0.0", + "version": "14.1.0", "description": "A scalable set of icons handcrafted with <3 by GitHub.", "homepage": "https://primer.style/octicons", "author": "GitHub, Inc.", @@ -68,4 +68,4 @@ "engines": { "node": ">=8" } -} \ No newline at end of file +} diff --git a/package.json b/package.json index 9c019a3ca..6ad30bc8e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "private": true, - "version": "14.0.0", + "version": "14.1.0", "scripts": { "version": "script/version", "test": "ava -v tests/*.js",