Skip to content

Commit

Permalink
Update info files
Browse files Browse the repository at this point in the history
  • Loading branch information
DreamerDeLy committed Mar 15, 2023
1 parent 9368c4b commit 23f57e5
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 10 deletions.
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,17 @@
## v0.5.0
*02.11.2022*

* SimpleTimer та SimpleStopwatch додані до загального namespace.
* SimpleTimer та SimpleStopwatch додані до загального `namespace`.
* Додано HTTPPackage.

## v0.6.0
*14.03.2023*

* Додано HTTPPackageParser разом з тестами і прикладом.
* Додано HTTPPackageParser разом з тестами і прикладом.

## v0.7.0
*15.03.2023*

* Модулі HTTPPackage та HTTPPackageParser перейменовані на HTTPRequest та HTTPResponse відповідно.
* HTTPRequestType перетворене з enum `class` на простий `enum`, що б спростити синтаксис.
* В CLI додана підтримка встановлення `output`.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Also you can select specific version, using tag:

```ini
lib_deps =
https://github.com/DreamerDeLy/dream.git#v0.4.0
https://github.com/DreamerDeLy/dream.git#v0.7.0
```

**For ArduinoIDE**:
Expand All @@ -44,8 +44,8 @@ lib_deps =
- [**CLI**](src/debug/cli.h) - Library for the developer's CLI, into which any command can be integrated.
- [**Serial Logging**](src/debug/serial_logging.h) - Macro-based logging library.
- **NET**
- [**HTTPPackage**](src/net/HTTPPackage.h) - Module for generating HTTP packages.
- [**HTTPPackageParser**](src/net/HTTPPackageParser.h) - HTTP packages parser for reading responses from servers.
- [**HTTPRequest**](src/net/HTTPRequest.h) - Generator of HTTP request packages.
- [**HTTPResponse**](src/net/HTTPResponse.h) - Module for parsing HTTP response packages.
- **Realtime**
- [**Simple Timer**](src/realtime/simple_timer.h) - Simple software timer.
- [**Simple Stopwatch**](src/realtime/simple_stopwatch.h) - A simple object for measuring the elapsed time between the execution of some functions.
Expand All @@ -57,15 +57,14 @@ This project created with [PlatformIO](https://platformio.org/).
Use this commands to build examples:

```powershell
pio ci --board=esp32dev examples/CLI_Basic/ --lib src/
pio ci --board=esp32dev examples/CLI_Continuous/ --lib src/
pio ci --board=esp32dev examples/CLI/ --lib src/
pio ci --board=esp32dev examples/SerialLogging/ --lib src/
pio ci --board=esp32dev examples/UnitsConversion/ --lib src/
pio ci --board=esp32dev examples/Values/ --lib src/
pio ci --board=esp32dev examples/Timer_Basic/ --lib src/
pio ci --board=esp32dev examples/Timer_Callbacks/ --lib src/
pio ci --board=esp32dev examples/HTTPPackage/ --lib src/
pio ci --board=esp32dev examples/HTTPParser/ --lib src/
pio ci --board=esp32dev examples/HTTPRequest/ --lib src/
pio ci --board=esp32dev examples/HTTPResponse/ --lib src/
```

Use this command to run tests (you have to have connected ESP32 to your computer):
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"type": "git",
"url": "https://github.com/DreamerDeLy/dream.git"
},
"version": "0.5.0",
"version": "0.7.0",
"license": "GPL-3.0-or-later",
"frameworks": "arduino",
"platforms": [
Expand Down

0 comments on commit 23f57e5

Please sign in to comment.