Skip to content

Commit 97b7c26

Browse files
authored
Merge pull request #208 from nfcim/develop
Version 3.6.0
2 parents e7511f7 + 5756652 commit 97b7c26

File tree

6 files changed

+28
-7
lines changed

6 files changed

+28
-7
lines changed

.github/workflows/example-app.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: Build Example App
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [master, develop]
6+
pull_request:
7+
branches: [master, develop]
48

59
jobs:
610
build:

CHANGELOG.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -177,9 +177,7 @@
177177
* allow authentication of sector 0 (#157)
178178
* fix data type check in `writeBlock` (#161)
179179

180-
## 3.6.0-rc.6
181-
182-
This is a release candidate for 3.6.0. Please test it and report any issues.
180+
## 3.6.0
183181

184182
* Requires Dart 3.6+ and Flutter 3.24+
185183
* Remove annoying dependency on `js` library, replace with `dart:js_interop`

CONTRIBUTING.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Contributing
2+
3+
Thanks for your interest in contributing to `flutter_nfc_kit`!
4+
5+
## GitHub Workflow
6+
7+
We have two main branches:
8+
9+
* `develop` branch (default) is for actively development and RC releases.
10+
* `master` branch is for stable releases.
11+
12+
Both branches are protected. Pull requests are needed for any changes.
13+
14+
Please always make your changes on `develop` branch, and submit your PR against it.
15+
If there are any merge conflicts, please resolve them by rebasing your commits.

README.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ Note that due to API limitations, not all operations are supported on all platfo
2323

2424
This library uses [ndef](https://pub.dev/packages/ndef) for NDEF record encoding & decoding.
2525

26+
## Contributing
27+
28+
Please refer to [CONTRIBUTING.md](CONTRIBUTING.md) for more information.
29+
2630
## Setup
2731

2832
### Android
@@ -48,7 +52,7 @@ This plugin now supports Swift package manager, and requires iOS 13+.
4852
* Open Runner.xcworkspace with Xcode and navigate to project settings then the tab _Signing & Capabilities._
4953
* Select the Runner in targets in left sidebar then press the "+ Capability" in the left upper corner and choose _Near Field Communication Tag Reading._
5054

51-
## Web
55+
### Web
5256

5357
The web version of this plugin **does not actually support NFC** in browsers, but uses a specific [WebUSB protocol](https://github.com/nfcim/flutter_nfc_kit/blob/master/WebUSB.md), so that Flutter programs can communicate with dual-interface (NFC / USB) devices in a platform-independent way.
5458

example/pubspec.lock

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ packages:
9292
path: ".."
9393
relative: true
9494
source: path
95-
version: "3.6.0-rc.6"
95+
version: "3.6.0"
9696
flutter_test:
9797
dependency: "direct dev"
9898
description: flutter

pubspec.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: flutter_nfc_kit
22
description: Provide NFC functionality on Android, iOS & Web, including reading metadata, read & write NDEF records, and transceive layer 3 & 4 data with NFC tags / cards
3-
version: 3.6.0-rc.6
3+
version: 3.6.0
44
homepage: "https://github.com/nfcim/flutter_nfc_kit"
55

66
environment:

0 commit comments

Comments
 (0)