Skip to content

Commit 9e0da52

Browse files
committed
roll v2.3.0
1 parent 20f1b3b commit 9e0da52

File tree

11 files changed

+21
-13
lines changed

11 files changed

+21
-13
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## Version 2.3.0, 2017.05.31
2+
3+
* Enable setting of multiple properties at once resulting in a single re-render [#69](https://github.com/neocotic/qrious/issues/69)
4+
* Deferring or avoiding ImageRenderer [#71](https://github.com/neocotic/qrious/issues/71)
5+
* Switch to container-based Travis builds for faster boot times [#73](https://github.com/neocotic/qrious/issues/73)
6+
* Change code style to be more contributor-friendly [#75](https://github.com/neocotic/qrious/issues/75)
7+
* Improve download links in README [#76](https://github.com/neocotic/qrious/issues/76)
8+
19
## Version 2.2.0, 2016.10.30
210

311
* Add `backgroundAlpha` and `foregroundAlpha` options to control transparency [#63](https://github.com/neocotic/qrious/issues/63)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ The current version of `QRious`.
212212

213213
``` javascript
214214
QRious.VERSION;
215-
//=> "2.2.0"
215+
//=> "2.3.0"
216216
```
217217

218218
## Migrating from v1

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qrious",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Library for QR code generation using canvas",
55
"homepage": "https://github.com/neocotic/qrious",
66
"authors": [

dist/cjs/qrious.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/cjs/qrious.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/umd/qrious.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/umd/qrious.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/umd/qrious.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/umd/qrious.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "qrious",
3-
"version": "2.2.0",
3+
"version": "2.3.0",
44
"description": "Library for QR code generation using canvas",
55
"homepage": "https://github.com/neocotic/qrious",
66
"bugs": {

src/QRious.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ class QRious {
7272
* @static
7373
*/
7474
static get VERSION() {
75-
return '2.2.0';
75+
return '2.3.0';
7676
}
7777

7878
/**

0 commit comments

Comments
 (0)