Skip to content

Commit

Permalink
1.3.1: Don't package development-related files into released gem
Browse files Browse the repository at this point in the history
Files packaged after this change:

    CHANGELOG.md
    LICENSE.txt
    README.md
    after_commit_everywhere.gemspec
    lib/after_commit_everywhere.rb
    lib/after_commit_everywhere/version.rb
    lib/after_commit_everywhere/wrap.rb

Fixes #26
  • Loading branch information
Envek committed Jun 21, 2023
1 parent b60ef84 commit 6647ec9
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Expand Up @@ -4,6 +4,24 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## 1.3.1 (2023-06-21)

### Fixed

- Don't include development-related files into packaged gem to avoid confusing users or software tools. [@Envek][].

See discussion at [#26](https://github.com/Envek/after_commit_everywhere/issues/26).

Files packaged after this change:

CHANGELOG.md
LICENSE.txt
README.md
after_commit_everywhere.gemspec
lib/after_commit_everywhere.rb
lib/after_commit_everywhere/version.rb
lib/after_commit_everywhere/wrap.rb

## 1.3.0 (2022-10-28)

### Added
Expand Down
2 changes: 1 addition & 1 deletion after_commit_everywhere.gemspec
Expand Up @@ -22,7 +22,7 @@ Gem::Specification.new do |spec|
spec.license = "MIT"

spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
f.match(%r{^(\.|gemfiles/|bin/|spec/|tmp/|Appraisals|Gemfile|Rakefile)})
end
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
Expand Down
2 changes: 1 addition & 1 deletion lib/after_commit_everywhere/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module AfterCommitEverywhere
VERSION = "1.3.0"
VERSION = "1.3.1"
end

0 comments on commit 6647ec9

Please sign in to comment.