From 3cdd6f49519d9bc491cd58cc8c33102a96d12c98 Mon Sep 17 00:00:00 2001 From: Kyrylo Silin Date: Sat, 21 Mar 2020 19:08:40 +0800 Subject: Release v0.13.0 --- CHANGELOG.md | 3 +++ lib/pry/command_state.rb | 2 +- lib/pry/config.rb | 2 +- lib/pry/config/attributable.rb | 2 +- lib/pry/config/lazy_value.rb | 2 +- lib/pry/config/memoized_value.rb | 2 +- lib/pry/config/value.rb | 2 +- lib/pry/control_d_handler.rb | 2 +- lib/pry/env.rb | 2 +- lib/pry/exception_handler.rb | 2 +- lib/pry/syntax_highlighter.rb | 2 +- lib/pry/system_command_handler.rb | 2 +- lib/pry/version.rb | 2 +- lib/pry/warning.rb | 2 +- 14 files changed, 16 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6fa9a86a..fa805175 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/lib/pry/command_state.rb b/lib/pry/command_state.rb index 82c9ab95..fa98d515 100644 --- a/lib/pry/command_state.rb +++ b/lib/pry/command_state.rb @@ -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 diff --git a/lib/pry/config.rb b/lib/pry/config.rb index db19d269..6c377a48 100644 --- a/lib/pry/config.rb +++ b/lib/pry/config.rb @@ -151,7 +151,7 @@ class Pry attribute :output_prefix # @return [String] - # @since ?.?.? + # @since v0.13.0 attribute :rc_file def initialize diff --git a/lib/pry/config/attributable.rb b/lib/pry/config/attributable.rb index 28391ef0..1cac89ed 100644 --- a/lib/pry/config/attributable.rb +++ b/lib/pry/config/attributable.rb @@ -6,7 +6,7 @@ class Pry # 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) diff --git a/lib/pry/config/lazy_value.rb b/lib/pry/config/lazy_value.rb index 5b776068..5df18915 100644 --- a/lib/pry/config/lazy_value.rb +++ b/lib/pry/config/lazy_value.rb @@ -14,7 +14,7 @@ class Pry # value.foo # => 22 # # @api private - # @since ?.?.? + # @since v0.13.0 # @see Pry::Config::MemoizedValue class LazyValue def initialize(&block) diff --git a/lib/pry/config/memoized_value.rb b/lib/pry/config/memoized_value.rb index 339f6e2b..9e2ff46a 100644 --- a/lib/pry/config/memoized_value.rb +++ b/lib/pry/config/memoized_value.rb @@ -14,7 +14,7 @@ class Pry # value.call # => 20 # # @api private - # @since ?.?.? + # @since v0.13.0 # @see Pry::Config::LazyValue class MemoizedValue def initialize(&block) diff --git a/lib/pry/config/value.rb b/lib/pry/config/value.rb index b646d97a..b32a196e 100644 --- a/lib/pry/config/value.rb +++ b/lib/pry/config/value.rb @@ -5,7 +5,7 @@ class Pry # 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) diff --git a/lib/pry/control_d_handler.rb b/lib/pry/control_d_handler.rb index cee15ba5..1d3386d6 100644 --- a/lib/pry/control_d_handler.rb +++ b/lib/pry/control_d_handler.rb @@ -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: diff --git a/lib/pry/env.rb b/lib/pry/env.rb index e7451d7e..30ef79cb 100644 --- a/lib/pry/env.rb +++ b/lib/pry/env.rb @@ -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) diff --git a/lib/pry/exception_handler.rb b/lib/pry/exception_handler.rb index 3dddc6b5..d7f3b862 100644 --- a/lib/pry/exception_handler.rb +++ b/lib/pry/exception_handler.rb @@ -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. diff --git a/lib/pry/syntax_highlighter.rb b/lib/pry/syntax_highlighter.rb index f7f3375b..d6f97786 100644 --- a/lib/pry/syntax_highlighter.rb +++ b/lib/pry/syntax_highlighter.rb @@ -4,7 +4,7 @@ require 'coderay' class Pry # @api private - # @since ?.?.? + # @since v0.13.0 class SyntaxHighlighter def self.highlight(code, language = :ruby) tokenize(code, language).term diff --git a/lib/pry/system_command_handler.rb b/lib/pry/system_command_handler.rb index fcbfeb57..fa059e8b 100644 --- a/lib/pry/system_command_handler.rb +++ b/lib/pry/system_command_handler.rb @@ -2,7 +2,7 @@ class Pry # @api private - # @since ?.?.? + # @since v0.13.0 module SystemCommandHandler class << self def default(output, command, _pry_instance) diff --git a/lib/pry/version.rb b/lib/pry/version.rb index 231d89d9..cbc24e75 100644 --- a/lib/pry/version.rb +++ b/lib/pry/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true class Pry - VERSION = '0.12.2'.freeze + VERSION = '0.13.0'.freeze end diff --git a/lib/pry/warning.rb b/lib/pry/warning.rb index b37478f4..14c119ed 100644 --- a/lib/pry/warning.rb +++ b/lib/pry/warning.rb @@ -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. -- cgit v1.2.1