Skip to content

Commit 005beca

Browse files
author
Sergey Korney
committed
1.1.8
1 parent 70eb7c7 commit 005beca

File tree

5 files changed

+55
-8
lines changed

5 files changed

+55
-8
lines changed

.github/workflows/publish.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: Publish
2+
run-name: Publish ${{ github.ref_name }}
3+
4+
on:
5+
push:
6+
tags:
7+
- '[0-9]+.[0-9]+.[0-9]+'
8+
9+
jobs:
10+
publish:
11+
name: Publish Flutter Library
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- name: Checkout
16+
if: false
17+
uses: actions/checkout@v3
18+
19+
- name: Version Tag
20+
id: version_tag
21+
run: |
22+
echo Version: ${GITHUB_REF_NAME}
23+
echo "VERSION=${GITHUB_REF_NAME}" >> "$GITHUB_OUTPUT"
24+
25+
- name: Release
26+
if: ${{ !contains(github.event.ref, '-') }}
27+
id: create_release
28+
uses: actions/create-release@v1
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
with:
32+
tag_name: ${{ github.ref }}
33+
release_name: Affise Attribution Flutter Library ${{ github.ref }}
34+
draft: false
35+
prerelease: false

LICENSE

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1-
The Affise SDK is licensed under the MIT License.
1+
MIT License
22

33
Copyright (c) 2022 Affise, Inc. | https://affise.com
44

5-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
611

7-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
814

9-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Affise Attribution Flutter library
1+
# Affise Attribution Flutter Library
22

3-
- [Affise Attribution Flutter library](#affise-attribution-flutter-library)
3+
- [Affise Attribution Flutter Library](#affise-attribution-flutter-library)
44
- [Description](#description)
55
- [Quick start](#quick-start)
66
- [Integration](#integration)

android/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,5 +48,5 @@ android {
4848

4949
dependencies {
5050
implementation "com.android.installreferrer:installreferrer:2.2"
51-
implementation "com.affise:attribution:1.5.4"
51+
implementation "com.affise:attribution:1.5.5"
5252
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: affise_attribution_lib
22
description: Affise Attribution Flutter plugin.
3-
version: 1.1.7
3+
version: 1.1.8
44
homepage: https://affise.com/
55

66
environment:

0 commit comments

Comments
 (0)