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

Tiny deps bump #96

Merged
merged 2 commits into from
Jul 16, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
matrix:
# Add macos-latest and/or windows-latest if relevant for this package.
os: [ubuntu-latest]
sdk: [3.3, dev]
sdk: [3.4, dev]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332
- uses: dart-lang/setup-dart@0a8a0fc875eb934c15d08629302413c671d3f672
Expand Down
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
## 3.0.2-wip
## 3.0.2

- Require Dart 3.3 or greater.
- Require package `web: ^1.0.0`.
- Require Dart 3.4 or greater.

## 3.0.1

Expand Down
4 changes: 2 additions & 2 deletions example/src/qr_demo.dart
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ class QrDemo {
typeDiv.appendChild(radio);

final label = (document.createElement('label') as HTMLLabelElement)
..innerHTML = '$i'
..innerHTML = '$i'.toJS
..htmlFor = radio.id
..classList.add('btn');
typeDiv.appendChild(label);
Expand All @@ -110,7 +110,7 @@ class QrDemo {
errorDiv.appendChild(radio);

final label = (document.createElement('label') as HTMLLabelElement)
..innerHTML = QrErrorCorrectLevel.getName(v)
..innerHTML = QrErrorCorrectLevel.getName(v).toJS
..htmlFor = radio.id
..classList.add('btn');
errorDiv.appendChild(label);
Expand Down
14 changes: 7 additions & 7 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
name: qr
version: 3.0.2-wip
version: 3.0.2
description: >-
A QR code generation library for Dart and Flutter.
Supports QR code version 1 through 40, error correction and redundancy.
repository: https://github.com/kevmoo/qr.dart

environment:
sdk: ^3.3.0
sdk: ^3.4.0

dependencies:
meta: ^1.3.0
meta: ^1.7.0

dev_dependencies:
build_runner: ^2.0.0
build_web_compilers: ^4.0.0
build_runner: ^2.2.1
build_web_compilers: ^4.0.8
dart_flutter_team_lints: ^3.0.0
stream_transform: ^2.0.0
test: ^1.16.0
web: ^0.5.0
test: ^1.21.6
web: ^1.0.0
Loading