diff --git a/lib/rpl/interpreter.rb b/lib/rpl/interpreter.rb index 95b556f..f6e3484 100644 --- a/lib/rpl/interpreter.rb +++ b/lib/rpl/interpreter.rb @@ -18,7 +18,7 @@ class Interpreter attr_accessor :precision def initialize( stack = [], dictionary = Rpl::Lang::Dictionary.new ) - @version = 0.71 + @version = 0.72 @dictionary = dictionary @stack = stack diff --git a/rpl.gemspec b/rpl.gemspec index a1959e8..038580f 100644 --- a/rpl.gemspec +++ b/rpl.gemspec @@ -2,7 +2,7 @@ Gem::Specification.new do |s| s.name = 'rpl' - s.version = '0.7.1' + s.version = '0.7.2' s.summary = 'Functional Stack Language' s.description = "A language inspired by HP's RPL and https://github.com/louisrubet/rpn/" s.authors = ['Gwenhael Le Moine']