Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

prepare for v1.2.0 release #29

Merged
merged 1 commit into from Aug 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion CHANGELOG.md
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [1.2.0] - 2021-08-26

- Added Multi Mode Support which allows for multi-segment encoding. Thanks to @ssayer

## [1.1.0] - 2021-07-01
Expand Down Expand Up @@ -35,7 +37,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- fix `required_ruby_version` for Ruby 3 support

[unreleased]: https://github.com/whomwah/rqrcode_core/compare/v1.1.0...HEAD
[unreleased]: https://github.com/whomwah/rqrcode_core/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/whomwah/rqrcode_core/compare/v1.1.0...v1.2.0
[1.1.0]: https://github.com/whomwah/rqrcode_core/compare/v1.0.0...v1.1.0
[1.0.0]: https://github.com/whomwah/rqrcode_core/compare/v0.2.0...v1.0.0
[0.2.0]: https://github.com/whomwah/rqrcode_core/compare/v0.1.2...v0.2.0
26 changes: 13 additions & 13 deletions Gemfile.lock
@@ -1,38 +1,38 @@
PATH
remote: .
specs:
rqrcode_core (1.1.0)
rqrcode_core (1.2.0)

GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
minitest (5.14.4)
parallel (1.20.1)
parser (3.0.1.0)
parser (3.0.2.0)
ast (~> 2.4.1)
rainbow (3.0.0)
rake (13.0.3)
rake (13.0.6)
regexp_parser (2.1.1)
rexml (3.2.5)
rubocop (1.12.1)
rubocop (1.18.4)
parallel (~> 1.10)
parser (>= 3.0.0.0)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml
rubocop-ast (>= 1.2.0, < 2.0)
rubocop-ast (>= 1.8.0, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 3.0)
rubocop-ast (1.4.1)
parser (>= 2.7.1.5)
rubocop-performance (1.10.1)
rubocop (>= 0.90.0, < 2.0)
rubocop-ast (1.9.1)
parser (>= 3.0.1.1)
rubocop-performance (1.11.4)
rubocop (>= 1.7.0, < 2.0)
rubocop-ast (>= 0.4.0)
ruby-progressbar (1.11.0)
standard (1.0.5)
rubocop (= 1.12.1)
rubocop-performance (= 1.10.1)
standard (1.1.7)
rubocop (= 1.18.4)
rubocop-performance (= 1.11.4)
standardrb (1.0.0)
standard
unicode-display_width (2.0.0)
Expand All @@ -48,4 +48,4 @@ DEPENDENCIES
standardrb (~> 1.0)

BUNDLED WITH
2.2.15
2.2.22
2 changes: 1 addition & 1 deletion lib/rqrcode_core/version.rb
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module RQRCodeCore
VERSION = "1.1.0"
VERSION = "1.2.0"
end
3 changes: 1 addition & 2 deletions test/test_helper.rb
@@ -1,4 +1,3 @@
$LOAD_PATH.unshift File.expand_path("../../lib", __FILE__)
require "bundler/setup"
require "rqrcode_core"

require "minitest/autorun"