Skip to content

Commit 824c5c0

Browse files
authored
Merge pull request #73 from whomwah/release
v1.0.0 fix version and update README
2 parents fdffa50 + 3f96e9f commit 824c5c0

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

README.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
__UPDATE:__ A new pre-release has been made [v1.0.0.pre](https://github.com/whomwah/rqrcode/releases/tag/v1.0.0.pre). A fresh start after a _long_ pause. There is actually no new functionality in the release but there are some dependency changes. Minimum Ruby version is now `~> 2.3`. This release also cleans up the internals a bit. The core `QR Code` generation has been extracted into a new [rqrcode_core](https://github.com/whomwah/rqrcode_core) gem. This enables `qrqcode` to concentrate on rendering. Once `v1.0.0.pre` has had time for people to try I'll release `v1.0.0` of `rqrcode` and then concentrate on working through issues and PRs although I appreciate many of these may be old and out of date now! You can install this pre-release with `gem install rqrcode --pre` or `gem 'rqrcode', '>= 1.0.0.pre'` in your `Gemfile`.
2-
3-
41
# RQRCode
52

63
![](https://github.com/whomwah/rqrcode/workflows/rqrcode/badge.svg)
@@ -9,6 +6,7 @@ __UPDATE:__ A new pre-release has been made [v1.0.0.pre](https://github.com/whom
96
[RQRCode](https://github.com/whomwah/rqrcode) is a library for creating and rendering QR codes into various formats. It has a simple interface with all the standard QR code options. It was adapted from the Javascript library by Kazuhiko Arase.
107

118
* QR code is trademarked by Denso Wave inc
9+
* Minimum Ruby version is `~> 2.3`
1210
* For `rqrcode` releases `< 1.0.0` please use [this README](https://github.com/whomwah/rqrcode/blob/cd2732a68434e6197c219e6c8cbdadfce0c4c4f3/README.md)
1311

1412
## Installing
@@ -90,7 +88,8 @@ svg = qrcode.as_svg(
9088
offset: 0,
9189
color: '000',
9290
shape_rendering: 'crispEdges',
93-
module_size: 6
91+
module_size: 6,
92+
standalone: true
9493
)
9594
```
9695

lib/rqrcode/version.rb

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module RQRCode
4-
VERSION = "1.0.0.pre"
4+
VERSION = "1.0.0"
55
end

0 commit comments

Comments
 (0)