Skip to content
Merged
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 Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PYROBUSTA_VERSION := v0.6.0
PYROBUSTA_VERSION := v0.7.0
DEVICE ?= u0

SRC_DIR := src
Expand Down
2 changes: 1 addition & 1 deletion assets/www/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ <h2>Demo Application</h2>

<div class="footer">
<hr>
<address>PyRobusta v0.6.0 Web Server</address>
<address>PyRobusta v0.7.0 Web Server</address>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion assets/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h2>Available Resources</h2>

<div class="footer">
<hr>
<address>PyRobusta v0.6.0 Web Server</address>
<address>PyRobusta v0.7.0 Web Server</address>
</div>

</body>
Expand Down
2 changes: 1 addition & 1 deletion dist/pyrobusta/assets/www/examples.html
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ <h2>Demo Application</h2>

<div class="footer">
<hr>
<address>PyRobusta v0.6.0 Web Server</address>
<address>PyRobusta v0.7.0 Web Server</address>
</div>
</body>
</html>
2 changes: 1 addition & 1 deletion dist/pyrobusta/assets/www/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ <h2>Available Resources</h2>

<div class="footer">
<hr>
<address>PyRobusta v0.6.0 Web Server</address>
<address>PyRobusta v0.7.0 Web Server</address>
</div>

</body>
Expand Down
Binary file modified dist/pyrobusta/bindings/http_connection.mpy
Binary file not shown.
Binary file modified dist/pyrobusta/protocol/http.mpy
Binary file not shown.
Binary file modified dist/pyrobusta/protocol/http_file_server.mpy
Binary file not shown.
Binary file modified dist/pyrobusta/protocol/http_multipart.mpy
Binary file not shown.
Binary file modified dist/pyrobusta/utils/config.mpy
Binary file not shown.
Binary file modified dist/pyrobusta/utils/helpers.mpy
Binary file not shown.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "v0.6.0",
"version": "v0.7.0",
"urls": [
[
"pyrobusta/connectivity/wifi.mpy",
Expand Down
2 changes: 1 addition & 1 deletion src/pyrobusta/utils/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def const(n): # pylint: disable=C0116

from .helpers import normalize_path

PYROBUSTA_VERSION = "v0.6.0"
PYROBUSTA_VERSION = "v0.7.0"
CONFIG_LOCATION = "pyrobusta.env"

# -------------------------------------------
Expand Down
Loading