diff --git a/HISTORY.md b/HISTORY.md index 428b109..cceed4e 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,6 +1,12 @@ Crass Change History ==================== +1.0.3 (2017-11-13) +------------------ + +* Added support for frozen string literals. (#3 - @flavorjones) + + 1.0.2 (2015-04-17) ------------------ diff --git a/LICENSE b/LICENSE index 9b05b6a..fd9e42d 100644 --- a/LICENSE +++ b/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2014 Ryan Grove (ryan@wonko.com) +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 diff --git a/README.md b/README.md index 748bf58..4aafc4a 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,7 @@ tokenizing and parsing rules that Crass implements. License ------- -Copyright (c) 2014 Ryan Grove (ryan@wonko.com) +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 diff --git a/lib/crass/version.rb b/lib/crass/version.rb index 933973d..2911798 100644 --- a/lib/crass/version.rb +++ b/lib/crass/version.rb @@ -1,5 +1,5 @@ # encoding: utf-8 module Crass - VERSION = '1.0.2' + VERSION = '1.0.3' end