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

Release v1.1.0 #81

Merged
merged 1 commit into from
Apr 15, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
139 changes: 0 additions & 139 deletions .circleci/config.yml

This file was deleted.

11 changes: 8 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
method_source changelog
=======================
# method_source changelog

### master

### [v1.1.0][v1.1.0] (April 15, 2024)

- Added `MethodSource.clear_cache`
- Added support for `RUBYOPT="--enable-frozen-string-literal"`

### [v1.0.0][v1.0.0] (March 19, 2020)

* Added Ruby 2.7 support
- Added Ruby 2.7 support

[v1.0.0]: https://github.com/banister/method_source/releases/tag/v1.0.0
[v1.1.0]: https://github.com/banister/method_source/releases/tag/v1.1.0
2 changes: 1 addition & 1 deletion lib/method_source/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module MethodSource
VERSION = '1.0.0'.freeze
VERSION = '1.1.0'.freeze
end
4 changes: 2 additions & 2 deletions method_source.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@

Gem::Specification.new do |s|
s.name = "method_source".freeze
s.version = "1.0.0"
s.version = "1.1.0"

s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version=
s.require_paths = ["lib".freeze]
s.authors = ["John Mair (banisterfiend)".freeze]
s.date = "2020-03-19"
s.date = "2024-04-15"
s.description = "retrieve the sourcecode for a method".freeze
s.email = "[email protected]".freeze
s.files = ["CHANGELOG.md".freeze, ".gemtest".freeze, ".travis.yml".freeze, ".yardopts".freeze, "Gemfile".freeze, "LICENSE".freeze, "README.markdown".freeze, "Rakefile".freeze, "lib/method_source.rb".freeze, "lib/method_source/code_helpers.rb".freeze, "lib/method_source/source_location.rb".freeze, "lib/method_source/version.rb".freeze, "method_source.gemspec".freeze, "spec/method_source/code_helpers_spec.rb".freeze, "spec/method_source_spec.rb".freeze, "spec/spec_helper.rb".freeze]
Expand Down