Skip to content
Merged

next #31

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ publishing {
from components.java
groupId = 'io.github.llschall'
artifactId = 'ardwloop'
version = '0.4.1'
version = '0.4.2'
pom {
name = 'ardwloop'
description = 'ardwloop takes care of exchanging a matrix of data between your Java (or Kotlin) program and its matching Arduino program.'
Expand Down
2 changes: 1 addition & 1 deletion ino/examples/demo_led/demo_led.ino
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/*
* Welcome to the Ardwloop Demo !
*
* Featuring Ardwloop 0.4.1
* Featuring Ardwloop 0.4.2
*
* More setup instructions are available in
* https://llschall.github.io/ardwloop/demo
Expand Down
2 changes: 1 addition & 1 deletion ino/examples/demo_led_esp32_bt/demo_led_esp32_bt.ino
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Welcome to the Ardwloop Demo,
* customized for board based on ESP32 and bluetooth communication.
*
* Featuring Ardwloop 0.4.1
* Featuring Ardwloop 0.4.2
*
* Make sure you selected an ESP32 board in your IDE
* before trying to compile this.
Expand Down
2 changes: 1 addition & 1 deletion ino/library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Ardwloop
version=0.4.1
version=0.4.2
author=Laurent Schall <llschall@gmx.com>
maintainer=Laurent Schall <llschall@gmx.com>
sentence=A library to ease controlling an Arduino program from a Java or Kotlin application.
Expand Down
2 changes: 1 addition & 1 deletion ino/src/Ardwloop.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
* Adrwloop.h - Entry point of the ardwloop API for the Arduino side
* See https://llschall.github.io/ardwloop
*
* Version 0.4.1
* Version 0.4.2
*/

#ifndef ardwloop_h
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/llschall/ardwloop/ArdwloopStarter.java
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public class ArdwloopStarter {
/**
* The version of the Ardwloop library
*/
public static final String VERSION = "0.4.1";
public static final String VERSION = "0.4.2";

/**
* An integer that might vary with the snapshot
Expand Down
Loading