summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyrylo Silin <silin@kyrylo.org>2020-03-21 19:13:19 +0800
committerGitHub <noreply@github.com>2020-03-21 19:13:19 +0800
commit2208ed30f246b4dbeb512745021e00052781ece6 (patch)
tree12b75c740aa3e59e151caf91eea7f08da439fac4
parentfc30295031f294d9c4d143502ac69cae4456899f (diff)
parent3cdd6f49519d9bc491cd58cc8c33102a96d12c98 (diff)
downloadpry-v0.13.x.tar.gz
Merge pull request #2115 from pry/release-0-13-0v0.13.0v0.13.x
Release v0.13.0
-rw-r--r--CHANGELOG.md3
-rw-r--r--lib/pry/command_state.rb2
-rw-r--r--lib/pry/config.rb2
-rw-r--r--lib/pry/config/attributable.rb2
-rw-r--r--lib/pry/config/lazy_value.rb2
-rw-r--r--lib/pry/config/memoized_value.rb2
-rw-r--r--lib/pry/config/value.rb2
-rw-r--r--lib/pry/control_d_handler.rb2
-rw-r--r--lib/pry/env.rb2
-rw-r--r--lib/pry/exception_handler.rb2
-rw-r--r--lib/pry/syntax_highlighter.rb2
-rw-r--r--lib/pry/system_command_handler.rb2
-rw-r--r--lib/pry/version.rb2
-rw-r--r--lib/pry/warning.rb2
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.