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 v0.13.0 #2115

Merged
merged 1 commit into from
Mar 21, 2020
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
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
### master

### [v0.13.0][v0.13.0] (March 21, 2020)

#### Features

* Added metadata to the gem (such as changelog URI, source code URI & bug
Expand Down Expand Up @@ -1057,3 +1059,4 @@ complete CHANGELOG:
[v0.12.0]: https://github.com/pry/pry/releases/tag/v0.12.0
[v0.12.1]: https://github.com/pry/pry/releases/tag/v0.12.1
[v0.12.2]: https://github.com/pry/pry/releases/tag/v0.12.2
[v0.13.0]: https://github.com/pry/pry/releases/tag/v0.13.0
2 changes: 1 addition & 1 deletion lib/pry/command_state.rb
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Pry
# subsequent command invocations. All state saved here is unique to the
# command.
#
# @since ?.?.?
# @since v0.13.0
# @api private
class CommandState
def self.default
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ class Config
attribute :output_prefix

# @return [String]
# @since ?.?.?
# @since v0.13.0
attribute :rc_file

def initialize
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/config/attributable.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ class Config
# accessors. Attribute accessors create a standard "attr_writer" and a
# customised "attr_reader". This reader is Proc-aware (lazy).
#
# @since ?.?.?
# @since v0.13.0
# @api private
module Attributable
def attribute(attr_name)
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/config/lazy_value.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Config
# value.foo # => 22
#
# @api private
# @since ?.?.?
# @since v0.13.0
# @see Pry::Config::MemoizedValue
class LazyValue
def initialize(&block)
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/config/memoized_value.rb
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class Config
# value.call # => 20
#
# @api private
# @since ?.?.?
# @since v0.13.0
# @see Pry::Config::LazyValue
class MemoizedValue
def initialize(&block)
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/config/value.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class Config
# Value holds a value for the given attribute and decides how it should
# be read. Procs get called, other values are returned as is.
#
# @since ?.?.?
# @since v0.13.0
# @api private
class Value
def initialize(value)
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/control_d_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Pry
# @api private
# @since ?.?.?
# @since v0.13.0
module ControlDHandler
# Deal with the ^D key being pressed. Different behaviour in different
# cases:
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/env.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
class Pry
# Env is a helper module to work with environment variables.
#
# @since ?.?.?
# @since v0.13.0
# @api private
module Env
def self.[](key)
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/exception_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Pry
# @api private
# @since ?.?.?
# @since v0.13.0
module ExceptionHandler
class << self
# Will only show the first line of the backtrace.
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/syntax_highlighter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

class Pry
# @api private
# @since ?.?.?
# @since v0.13.0
class SyntaxHighlighter
def self.highlight(code, language = :ruby)
tokenize(code, language).term
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/system_command_handler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Pry
# @api private
# @since ?.?.?
# @since v0.13.0
module SystemCommandHandler
class << self
def default(output, command, _pry_instance)
Expand Down
2 changes: 1 addition & 1 deletion lib/pry/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class Pry
VERSION = '0.12.2'.freeze
VERSION = '0.13.0'.freeze
end
2 changes: 1 addition & 1 deletion lib/pry/warning.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Pry
# @api private
# @since ?.?.?
# @since v0.13.0
module Warning
# Prints a warning message with exact file and line location, similar to how
# Ruby's -W prints warnings.
Expand Down