Skip to content

Commit

Permalink
0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
islekcaganmert committed Aug 1, 2024
1 parent b28f978 commit 5bf2347
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# BevyFrame 0.3 ɑ
# BevyFrame 0.4 ɑ

Python Web Framework

Expand All @@ -13,8 +13,8 @@ LuOS

Other
```bash
$ wget https://github.com/islekcaganmert/bevyframe/releases/download/Preview/BevyFrame-0.3.0-py3-none-any.whl
$ python3 -m pip install ./BevyFrame-0.3.0-py3-none-any.whl
$ wget https://github.com/islekcaganmert/bevyframe/releases/download/Preview/BevyFrame-0.4.0-py3-none-any.whl
$ python3 -m pip install ./BevyFrame-0.4.0-py3-none-any.whl
```
## Features

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "BevyFrame"
version = "0.3.0"
version = "0.4.0"
description = "Python Web Framework"
readme = "README.md"
license = {text = "LGPL-2.1"}
Expand Down
2 changes: 1 addition & 1 deletion src/bevyframe/Frame/Run/Booting.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@


def booting(self, host: str, port: int, debug: bool):
print('BevyFrame 0.2 ⍺')
print('BevyFrame 0.4 ⍺')
print('Upstream Version, Do Not Use in Production')
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
Expand Down

0 comments on commit 5bf2347

Please sign in to comment.