Skip to content

Commit 0557f4a

Browse files
committed
0.2.5 Adler
1 parent 7c3a797 commit 0557f4a

25 files changed

+101
-27
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# These are supported funding model platforms
22

33
github: RobTillaart
4-
4+
custom: "https://www.paypal.me/robtillaart"

libraries/Adler/.github/workflows/arduino-lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@ on: [push, pull_request]
55
jobs:
66
lint:
77
runs-on: ubuntu-latest
8+
timeout-minutes: 5
89
steps:
9-
- uses: actions/checkout@v3
10+
- uses: actions/checkout@v4
1011
- uses: arduino/arduino-lint-action@v1
1112
with:
1213
library-manager: update

libraries/Adler/.github/workflows/arduino_test_runner.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,10 @@ on: [push, pull_request]
66
jobs:
77
runTest:
88
runs-on: ubuntu-latest
9+
timeout-minutes: 20
910

1011
steps:
11-
- uses: actions/checkout@v3
12+
- uses: actions/checkout@v4
1213
- uses: ruby/setup-ruby@v1
1314
with:
1415
ruby-version: 2.6

libraries/Adler/.github/workflows/jsoncheck.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,11 @@ on:
99
jobs:
1010
test:
1111
runs-on: ubuntu-latest
12+
timeout-minutes: 5
1213
steps:
13-
- uses: actions/checkout@v3
14+
- uses: actions/checkout@v4
1415
- name: json-syntax-check
15-
uses: limitusus/json-syntax-check@v1
16+
uses: limitusus/json-syntax-check@v2
1617
with:
1718
pattern: "\\.json$"
1819

libraries/Adler/Adler.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: Adler.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.2.4
4+
// VERSION: 0.2.5
55
// DATE: 2022-01-27
66
// PURPOSE: Arduino Library for calculating Adler checksum
77
// URL: https://github.com/RobTillaart/Adler

libraries/Adler/Adler.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// FILE: Adler.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.2.4
5+
// VERSION: 0.2.5
66
// DATE: 2022-01-27
77
// PURPOSE: Arduino Library for calculating Adler checksum
88
// URL: https://github.com/RobTillaart/Adler
@@ -12,7 +12,7 @@
1212
#include "Arduino.h"
1313

1414

15-
#define ADLER_LIB_VERSION (F("0.2.4"))
15+
#define ADLER_LIB_VERSION (F("0.2.5"))
1616

1717

1818
const uint32_t ADLER32_MOD_PRIME = 65521;

libraries/Adler/Adler16.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: Adler16.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.2.4
4+
// VERSION: 0.2.5
55
// DATE: 2022-06-14
66
// PURPOSE: Arduino Library for calculating Adler-16 checksum
77
// URL: https://github.com/RobTillaart/Adler

libraries/Adler/Adler16.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
22
//
3-
// FILE: Adler16.cpp
3+
// FILE: Adler16.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.2.4
5+
// VERSION: 0.2.5
66
// DATE: 2022-06-15
77
// PURPOSE: Arduino Library for calculating Adler-16 checksum
88
// URL: https://github.com/RobTillaart/Adler
@@ -13,7 +13,7 @@
1313
#include "Arduino.h"
1414

1515

16-
#define ADLER16_LIB_VERSION (F("0.2.4"))
16+
#define ADLER16_LIB_VERSION (F("0.2.5"))
1717

1818

1919
// largest prime below 2^8

libraries/Adler/Adler32.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// FILE: Adler32.cpp
33
// AUTHOR: Rob Tillaart
4-
// VERSION: 0.2.4
4+
// VERSION: 0.2.5
55
// DATE: 2022-01-27
66
// PURPOSE: Arduino Library for calculating Adler-32 checksum
77
// URL: https://github.com/RobTillaart/Adler

libraries/Adler/Adler32.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#pragma once
22
//
3-
// FILE: Adler.h
3+
// FILE: Adler32.h
44
// AUTHOR: Rob Tillaart
5-
// VERSION: 0.2.4
5+
// VERSION: 0.2.5
66
// DATE: 2022-01-27
77
// PURPOSE: Arduino Library for calculating Adler-32 checksum
88
// URL: https://github.com/RobTillaart/Adler
@@ -12,7 +12,7 @@
1212
#include "Arduino.h"
1313

1414

15-
#define ADLER32_LIB_VERSION (F("0.2.4"))
15+
#define ADLER32_LIB_VERSION (F("0.2.5"))
1616

1717

1818
// largest prime below 2^16

0 commit comments

Comments
 (0)