Skip to content
This repository has been archived by the owner on Mar 16, 2023. It is now read-only.

Commit

Permalink
Release 1.0.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
Yorick Peterse committed Dec 15, 2013
1 parent 87ec6ef commit cdda8d9
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
1 change: 1 addition & 0 deletions checksum/ruby-lint-1.0.1.gem.sha512
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
67b8deac49560700db3388a20cfff941fb852b70b6760a66bb8d5fc67b718623d88668eef9322484eeb88fd8609d91ab7c42fb30259c53c381f33b609a566187
15 changes: 15 additions & 0 deletions doc/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,21 @@ This document contains a short summary of the various releases of ruby-lint.
For a full list of commits included in each release see the corresponding Git
tags (named after the versions).

## 1.0.1 - 2013-12-15

A small bugfix release that contains the following changes/fixes:

* Anonymous splat arguments (`def foo(_); end`) are now ignored by the
`UnusedVariables` class.
* Frozen definitions no longer have their members updated, see
<https://github.com/YorickPeterse/ruby-lint/issues/75> for more information.
* ENV is now treated as an instance.
* When re-assigning a variable the VM now updates the corresponding definition
instead of overwriting it. This was added to fix
<https://github.com/YorickPeterse/ruby-lint/issues/77>.
* Global variables are stored in the global scope opposed to the current scope.
* ARGV is now treated as an instance and extends Array.

## 1.0.0 - 2013-12-01

The first stable release of ruby-lint. The 1.0 series will not introduce any
Expand Down
2 changes: 1 addition & 1 deletion lib/ruby-lint/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module RubyLint
VERSION = '1.0.0'
VERSION = '1.0.1'
end # RubyLint

0 comments on commit cdda8d9

Please sign in to comment.