Skip to content

Commit 23f57e5

Browse files
committed
Update info files
1 parent 9368c4b commit 23f57e5

File tree

3 files changed

+16
-10
lines changed

3 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,17 @@
3232
## v0.5.0
3333
*02.11.2022*
3434

35-
* SimpleTimer та SimpleStopwatch додані до загального namespace.
35+
* SimpleTimer та SimpleStopwatch додані до загального `namespace`.
3636
* Додано HTTPPackage.
3737

3838
## v0.6.0
3939
*14.03.2023*
4040

41-
* Додано HTTPPackageParser разом з тестами і прикладом.
41+
* Додано HTTPPackageParser разом з тестами і прикладом.
42+
43+
## v0.7.0
44+
*15.03.2023*
45+
46+
* Модулі HTTPPackage та HTTPPackageParser перейменовані на HTTPRequest та HTTPResponse відповідно.
47+
* HTTPRequestType перетворене з enum `class` на простий `enum`, що б спростити синтаксис.
48+
* В CLI додана підтримка встановлення `output`.

README.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Also you can select specific version, using tag:
2525

2626
```ini
2727
lib_deps =
28-
https://github.com/DreamerDeLy/dream.git#v0.4.0
28+
https://github.com/DreamerDeLy/dream.git#v0.7.0
2929
```
3030

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

5959
```powershell
60-
pio ci --board=esp32dev examples/CLI_Basic/ --lib src/
61-
pio ci --board=esp32dev examples/CLI_Continuous/ --lib src/
60+
pio ci --board=esp32dev examples/CLI/ --lib src/
6261
pio ci --board=esp32dev examples/SerialLogging/ --lib src/
6362
pio ci --board=esp32dev examples/UnitsConversion/ --lib src/
6463
pio ci --board=esp32dev examples/Values/ --lib src/
6564
pio ci --board=esp32dev examples/Timer_Basic/ --lib src/
6665
pio ci --board=esp32dev examples/Timer_Callbacks/ --lib src/
67-
pio ci --board=esp32dev examples/HTTPPackage/ --lib src/
68-
pio ci --board=esp32dev examples/HTTPParser/ --lib src/
66+
pio ci --board=esp32dev examples/HTTPRequest/ --lib src/
67+
pio ci --board=esp32dev examples/HTTPResponse/ --lib src/
6968
```
7069

7170
Use this command to run tests (you have to have connected ESP32 to your computer):

library.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"type": "git",
1414
"url": "https://github.com/DreamerDeLy/dream.git"
1515
},
16-
"version": "0.5.0",
16+
"version": "0.7.0",
1717
"license": "GPL-3.0-or-later",
1818
"frameworks": "arduino",
1919
"platforms": [

0 commit comments

Comments
 (0)