From 87f642e80670dc1093eddf4d3a93cbd40a9551c6 Mon Sep 17 00:00:00 2001 From: Ryan Grove Date: Sun, 12 Jan 2020 14:21:48 -0800 Subject: [PATCH] Release 1.0.6 --- HISTORY.md | 7 +++++-- LICENSE | 2 +- README.md | 22 ---------------------- lib/crass/version.rb | 2 +- 4 files changed, 7 insertions(+), 26 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 44dc06e..d44d160 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,8 +1,11 @@ Crass Change History ==================== -Pending Release ---------------- +1.0.6 (2020-01-12) +------------------ + +* Number values are now limited to a maximum of `Float::MAX` and a minimum of + negative `Float::MAX`. (#11) * Added project metadata to the gemspec. (#9 - @orien) diff --git a/LICENSE b/LICENSE index fd9e42d..1a24415 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2017 Ryan Grove (ryan@wonko.com) +Copyright (c) 2020 Ryan Grove (ryan@wonko.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in diff --git a/README.md b/README.md index 4aafc4a..e947077 100644 --- a/README.md +++ b/README.md @@ -190,25 +190,3 @@ tokenizing and parsing rules that Crass implements. [simon]:http://exyr.org/about/ [spec]:http://www.w3.org/TR/css-syntax-3/ [tab]:http://www.xanthir.com/contact/ - -License -------- - -Copyright (c) 2017 Ryan Grove (ryan@wonko.com) - -Permission is hereby granted, free of charge, to any person obtaining a copy of -this software and associated documentation files (the ‘Software’), to deal in -the Software without restriction, including without limitation the rights to -use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of -the Software, and to permit persons to whom the Software is furnished to do so, -subject to the following conditions: - -The above copyright notice and this permission notice shall be included in all -copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS -FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR -COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER -IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN -CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/lib/crass/version.rb b/lib/crass/version.rb index 42ea6d9..0dce2d2 100644 --- a/lib/crass/version.rb +++ b/lib/crass/version.rb @@ -1,5 +1,5 @@ # encoding: utf-8 module Crass - VERSION = '1.0.5' + VERSION = '1.0.6' end