Skip to content

Commit d903f13

Browse files
committed
Bump SensorModbusMaster and others
Signed-off-by: Sara Damiano <sdamiano@stroudcenter.org>
1 parent 1173a96 commit d903f13

6 files changed

Lines changed: 81 additions & 107 deletions

File tree

.github/workflows/changelog_reminder.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
name: Changelog Reminder
66
runs-on: ubuntu-latest
77
steps:
8-
- uses: actions/checkout@v4
8+
- uses: actions/checkout@v5
99
with:
1010
persist-credentials: false # otherwise, the token used is the GITHUB_TOKEN, instead of your personal token
1111

.github/workflows/prepare_release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runs-on: ubuntu-latest
3434
steps:
3535
- name: Wait on Workflow
36-
uses: ArcticLampyrid/action-wait-for-workflow@v1.2.0
36+
uses: ArcticLampyrid/action-wait-for-workflow@v1.3.0
3737
with:
3838
workflow: ${{ matrix.req_workflow }}
3939
sha: ${{ github.sha || github.event.pull_request.head.sha || github.event.pull_request.head.ref }} # optional

.gitignore

Lines changed: 56 additions & 104 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Windows image file caches
22
Thumbs.db
33
ehthumbs.db
4+
~*
45

56
# Folder config file
67
Desktop.ini
@@ -17,9 +18,6 @@ $RECYCLE.BIN/
1718
# Windows shortcuts
1819
*.lnk
1920

20-
# Microsoft Office temp files
21-
~$*
22-
2321
# =========================
2422
# Operating System Files
2523
# =========================
@@ -49,122 +47,76 @@ Network Trash Folder
4947
Temporary Items
5048
.apdisk
5149

50+
# Python
51+
__pycache__/
52+
5253
# PyCharm
5354
.idea/
5455

55-
# Python
56-
__pycache__/
56+
# Atom
57+
.atomrc.cson
5758

58-
# Atom / PlatformIO
59-
.pio
60-
.pioenvs
61-
.piolibdeps
59+
# PlatformIO
60+
.pio/*
6261
.clang_complete
6362
.gcc-flags.json
64-
lib/readme.txt
63+
lib/*
64+
include/*
65+
boards/*
6566
/platformio.ini
66-
tests/*
67-
68-
# Prerequisites
69-
*.d
70-
71-
# Compiled Object files
72-
*.slo
73-
*.lo
74-
*.o
75-
*.obj
76-
77-
# Precompiled Headers
78-
*.gch
79-
*.pch
80-
81-
# Compiled Dynamic libraries
82-
*.so
83-
*.dylib
84-
*.dll
85-
86-
# Fortran module files
87-
*.mod
88-
*.smod
89-
90-
# Compiled Static libraries
91-
*.lai
92-
*.la
93-
*.a
94-
*.lib
95-
96-
# Executables
97-
*.exe
98-
*.out
99-
*.app
67+
.sconsign.dblite
10068

10169
# VSCode
70+
.vscode/.browse.c_cpp.db*
71+
.vscode/c_cpp_properties.json
72+
.vscode/launch.json
10273
.vscode
103-
104-
105-
# Ignore list for Eagle, a PCB layout tool
106-
107-
# Backup files
108-
*.s#?
109-
*.b#?
110-
*.l#?
111-
*.b$?
112-
*.s$?
113-
*.l$?
114-
115-
# Eagle project file
116-
# It contains a serial number and references to the file structure
117-
# on your computer.
118-
# comment the following line if you want to have your project file included.
119-
eagle.epf
120-
121-
# Autorouter files
122-
*.pro
123-
*.job
124-
125-
# CAM files
126-
*.$$$
127-
*.cmp
128-
*.ly2
129-
*.l15
130-
*.sol
131-
*.plc
132-
*.stc
133-
*.sts
134-
*.crc
135-
*.crs
136-
137-
*.dri
138-
*.drl
139-
*.gpi
140-
*.pls
141-
*.ger
142-
*.xln
143-
144-
*.drd
145-
*.drd.*
146-
147-
*.s#*
148-
*.b#*
149-
150-
*.info
151-
152-
*.eps
153-
154-
# file locks introduced since 7.x
155-
*.lck
15674
.history
157-
compile_commands.json
15875

159-
# Other Stuff
160-
pioScripts
76+
# Certificates
77+
*.pem
78+
*.pem.crt
79+
*.pem.cert
80+
*.pem.key
81+
*.crt
82+
*.cert
83+
*.key
84+
85+
# Other
86+
archive/
87+
compile_tests/
88+
logger_test*/
89+
ex_one_offs/*
16190
runDoxygen.bat
162-
generateKeywords.bat
91+
docs/examples/*
92+
docs/examples.dox_x
93+
platformio_extra_envs.ini
94+
src/sensors/table.md
95+
cache
16396
output_*.log
164-
sync.ffs_db
97+
clang_format_all.bat
98+
arduino_lint.md
99+
arduino_lint.json
100+
**/home/arduino/*
101+
compile_results.md
102+
arduino_cli_log.log
103+
continuous_integration/arduino_cli_local.yaml
104+
continuous_integration/platformio_ci_local.ini
105+
continuous_integration/arduino_cli_cmd.bat
106+
continuous_integration_artifacts/*
107+
arduino_cli.log
108+
**/sensor_tests/*
165109
docs/Doxyfile.bak
110+
generateKeywords.bat
111+
pio_common_libdeps.ini
112+
compile_commands.json
113+
sync.ffs_db
114+
.github/workflows/compile_arduino_cli.yaml
115+
.github/workflows/compile_platformio.yaml
116+
.github/workflows/determine_library_source.yaml
166117
run_mcss.bat
118+
docs/customdoxygen.css
119+
docs/footer.html
120+
docs/header.html
167121
installWorkingDependencies.bat
168122
clang-format-all.py
169-
clang_format_all.bat
170-
pio_common_libdeps.ini

ChangeLog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,19 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
1212

1313
### Changed
1414

15+
- Updated doxygen formatting
16+
- Bumped SensorModbusMaster dependency
17+
1518
### Added
1619

20+
- Added code spell configurations
21+
1722
### Removed
1823

1924
### Fixed
2025

26+
- Fixed spelling errors
27+
2128
***
2229

2330
## [0.1.1]
@@ -34,6 +41,7 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm
3441
- Added keywords.txt for Arduino IDE
3542

3643
***
44+
3745
### Fixed
3846

3947
***

examples/example_dependencies.json

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"action_cache_version": 1,
3+
"dependencies": [
4+
{
5+
"name": "NeoSWSerial",
6+
"version": "https://github.com/SRGDamia1/NeoSWSerial.git"
7+
},
8+
{
9+
"name": "AltSoftSerial",
10+
"version": "https://github.com/PaulStoffregen/AltSoftSerial.git"
11+
}
12+
]
13+
}

library.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,11 @@
1919
"platforms": ["atmelavr", "atmelsam"],
2020
"dependencies": [
2121
{
22+
"owner": "EnviroDIY",
2223
"name": "SensorModbusMaster",
2324
"library id": "1824",
2425
"url": "https://github.com/EnviroDIY/SensorModbusMaster.git",
25-
"version": ">=0.7.1",
26+
"version": "~1.0.0",
2627
"note": "EnviroDIY SensorModbusMaster - Arduino library for communicating via modbus with the Arduino acting as the modbus master.",
2728
"authors": ["Sara Damiano"],
2829
"frameworks": "arduino",

0 commit comments

Comments
 (0)