Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
berrak committed Dec 20, 2022
1 parent da31ee1 commit d0e7455
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/arduino_lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
name: Arduino lint update action
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: arduino/arduino-lint-action@v1
with:
library-manager: update
compliance: strict
9 changes: 4 additions & 5 deletions keywords.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@
# Note: Only ONE true tab-char to separate items!
# Syntax Coloring Map

# Datatypes: (KEYWORD1)
# Classes & Namespaces: (KEYWORD2)
# Methods and Functions: (KEYWORD2)
# Structure: (KEYWORD3)
# Constants: (LITERAL1)
# KEYWORD1: Datatypes
# KEYWORD2: Classes, Namespaces, Methods, and Functions
# KEYWORD3: Structure
# LITERAL1: Constants

Rdebug KEYWORD2

Expand Down
4 changes: 2 additions & 2 deletions library.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
name=Rdebug
version=0.1.0
version=0.2.0
author=Debinix Team <[email protected]>
maintainer=Debinix Team <[email protected]>
sentence=The Arduino library provides a unique form of debugging.
paragraph=The Rdebug library defines different debug levels, as in many similar debugging frameworks. Turn these On and Off statements at will. The debugging library is an adaption of Ralph S Bacons original code. It only takes a few minutes to grasp how to use it, and the debugging statements are super-fast since it is based only on macros.
paragraph=The Rdebug library defines different debug levels (OFF, ON, DEBUG, INFO, WARN, and ERROR), as in many similar debugging frameworks. Turn these statements On and Off with a #define. It only takes a few minutes to grasp how to use it, and the debugging statements are super-fast since it is based only on macros.
category=Other
url=https://github.com/berrak/Rdebug
architectures=*
Expand Down
1 change: 0 additions & 1 deletion src/Rdebug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
* The Arduino library provides a unique form of debugging.
*
* Copyright (c) 2021 Ralph Bacon
* https://github.com/RalphBacon/224-Superior-Serial.print-statements
*
* Adapted and modified original code.
* Copyright (C) 2022 Debinix Team
Expand Down
1 change: 0 additions & 1 deletion src/Rdebug.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
* The Arduino library provides a unique form of debugging.
*
* Copyright (c) 2021 Ralph Bacon
* https://github.com/RalphBacon/224-Superior-Serial.print-statements
*
* Adapted and modified original code.
* Copyright (C) 2022 Debinix Team
Expand Down

0 comments on commit d0e7455

Please sign in to comment.