Skip to content

Commit 163a358

Browse files
committed
- Version 1.0.0 release changes
1 parent 0252202 commit 163a358

File tree

4 files changed

+12
-8
lines changed

4 files changed

+12
-8
lines changed

README.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,18 @@ The namespace provides the following (*click on any declaration to navigate to m
4444
## Platformio.ini
4545
You can quickly and easily add this library to your project in PlatformIO by simply including the following in your `platformio.ini` file:
4646

47+
```ini
48+
lib_deps =
49+
flowduino/ESPressio-Observable@^1.0.0
50+
```
51+
52+
Alternatively, if you want to use the bleeding-edge (effectively "Developer Integration Testing" or "DIT") sources, you can instead use:
53+
4754
```ini
4855
lib_deps =
4956
https://github.com/Flowduino/ESPressio-Observable.git
5057
```
51-
5258
Please note that this will use the very latest commits pushed into the repository, so volatility is possible.
53-
This will of course be resolved when the first release version is tagged and published.
54-
This section of the README will be updated concurrently with each release.
5559

5660
## RTTI is required for this library!
5761
This library leverages fundamnetal C++ language features that in turn necessitate the use of RTTI (**R**un**T**ime **T**ype **I**nformation).

component.mk

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
COMPONENT_ADD_INCLUDEDIRS := include
22
COMPONENT_SRCDIRS := src
33
CXXFLAGS += -DESPRESSIO_OBSERVER
4-
CXXFLAGS += -DESPRESSIO_OBSERVER_VERSION_MAJOR=0
4+
CXXFLAGS += -DESPRESSIO_OBSERVER_VERSION_MAJOR=1
55
CXXFLAGS += -DESPRESSIO_OBSERVER_VERSION_MINOR=0
6-
CXXFLAGS += -DESPRESSIO_OBSERVER_VERSION_PATCH=1
7-
CXXFLAGS += -DESPRESSIO_OBSERVER_VERSION_STRING=\"0.0.1\"
6+
CXXFLAGS += -DESPRESSIO_OBSERVER_VERSION_PATCH=0
7+
CXXFLAGS += -DESPRESSIO_OBSERVER_VERSION_STRING=\"1.0.0\"

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"type": "git",
1111
"url": "https://github.com/Flowduino/ESPressio-Observable.git"
1212
},
13-
"version": "0.0.1",
13+
"version": "1.0.0",
1414
"license": "Apache-2.0",
1515
"frameworks": "arduino",
1616
"platforms": "*",

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Flowduino ESPressio-Observable
2-
version=0.0.1
2+
version=1.0.0
33
author=Simon J. Stuart
44
maintainer=Flowduino.com
55
sentence=Observation Library intended for use with all microcontrollers

0 commit comments

Comments
 (0)