diff options
author | Hiroshi SHIBATA <[email protected]> | 2020-12-22 21:43:30 +0900 |
---|---|---|
committer | Hiroshi SHIBATA <[email protected]> | 2020-12-22 21:45:28 +0900 |
commit | 9b9cbbbc17bb5840581c7da37fd0feb0a7d4c1f3 (patch) | |
tree | cc69767e7139d5616ad59764f8c897c598aa47ec /lib/pstore.rb | |
parent | 96b881679390271eb2234060ea7eed77a997d707 (diff) |
Update library versions of the default gems.
They are followed up with
https://github.com/ruby/ruby/commit/8fb02b7a97317090e3946e6f2d4a7d034f9699f1
Diffstat (limited to 'lib/pstore.rb')
-rw-r--r-- | lib/pstore.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pstore.rb b/lib/pstore.rb index f4e6e12c26..a46bcb84bc 100644 --- a/lib/pstore.rb +++ b/lib/pstore.rb @@ -92,7 +92,7 @@ require "digest" # Needless to say, if you're storing valuable data with PStore, then you should # backup the PStore files from time to time. class PStore - VERSION = "0.1.0" + VERSION = "0.1.1" RDWR_ACCESS = {mode: IO::RDWR | IO::CREAT | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze RD_ACCESS = {mode: IO::RDONLY | IO::BINARY, encoding: Encoding::ASCII_8BIT}.freeze |