Skip to content

Commit

Permalink
Merge branch 'main' into upload-download-move-tos
Browse files Browse the repository at this point in the history
  • Loading branch information
CameronFoxly committed Jan 27, 2023
2 parents 354ce4f + f6fd196 commit 70e48b9
Show file tree
Hide file tree
Showing 11 changed files with 18 additions and 12 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 17.11.1

### Patch Changes

- [#905](https://github.com/primer/octicons/pull/905) [`cbbc519f`](https://github.com/primer/octicons/commit/cbbc519ffd31eaf38d5d5b1e068ad4506d0d1e27) Thanks [@gr2m](https://github.com/gr2m)! - prefix relative paths with `./` in ESM exports paths

## 17.11.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion lib/octicons_gem/lib/octicons/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module Octicons
VERSION = "17.11.0".freeze
VERSION = "17.11.1".freeze
end
2 changes: 1 addition & 1 deletion lib/octicons_helper/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "https://rubygems.org"

gemspec

gem "octicons", "17.11.0"
gem "octicons", "17.11.1"
gem "rails"

group :development, :test do
Expand Down
2 changes: 1 addition & 1 deletion lib/octicons_helper/lib/octicons_helper/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module OcticonsHelper
VERSION = "17.11.0".freeze
VERSION = "17.11.1".freeze
end
2 changes: 1 addition & 1 deletion lib/octicons_helper/octicons_helper.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Gem::Specification.new do |s|

s.require_paths = ["lib"]

s.add_dependency "octicons", "17.11.0"
s.add_dependency "octicons", "17.11.1"
s.add_dependency "railties"
s.add_dependency "actionview"
end
2 changes: 1 addition & 1 deletion lib/octicons_jekyll/Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ source "https://rubygems.org"

gemspec

gem "octicons", "17.11.0"
gem "octicons", "17.11.1"

group :development, :test do
gem "minitest"
Expand Down
2 changes: 1 addition & 1 deletion lib/octicons_jekyll/jekyll-octicons.gemspec
Original file line number Diff line number Diff line change
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", "17.11.0"
s.add_dependency "octicons", "17.11.1"
end
2 changes: 1 addition & 1 deletion lib/octicons_jekyll/lib/jekyll-octicons/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ module Liquid; class Tag; end; end

module Jekyll
class Octicons < Liquid::Tag
VERSION = "17.11.0".freeze
VERSION = "17.11.1".freeze
end
end
2 changes: 1 addition & 1 deletion lib/octicons_node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/octicons",
"version": "17.11.0",
"version": "17.11.1",
"description": "A scalable set of icons handcrafted with <3 by GitHub.",
"homepage": "https://primer.style/octicons",
"author": "GitHub Inc.",
Expand Down
6 changes: 3 additions & 3 deletions lib/octicons_react/package.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
{
"name": "@primer/octicons-react",
"version": "17.11.0",
"version": "17.11.1",
"description": "A scalable set of icons handcrafted with <3 by GitHub.",
"homepage": "https://primer.style/octicons",
"author": "GitHub, Inc.",
"license": "MIT",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"exports": {
"import": "dist/index.esm.js",
"require": "dist/index.umd.js"
"import": "./dist/index.esm.js",
"require": "./dist/index.umd.js"
},
"sideEffects": false,
"types": "dist/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@primer/octicons",
"version": "17.11.0",
"version": "17.11.1",
"publishConfig": {
"registry": "no registry, don't publish from this package.json."
},
Expand Down

0 comments on commit 70e48b9

Please sign in to comment.