Skip to content

Commit f31015f

Browse files
authored
Release 0.4.1 (#562)
1 parent 5dfc6ff commit f31015f

4 files changed

Lines changed: 7 additions & 8 deletions

File tree

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ To run a demo for hydrus using the sample API, just do the following:
5555
1. Clone hydrus:
5656
```bash
5757
git clone https://github.com/HTTP-APIs/hydrus
58-
```bash
5958
cd hydrus
6059
```
6160
2. Install a [*Python virtual environment*](https://packaging.python.org/guides/installing-using-pip-and-virtual-environments/) using:
@@ -79,7 +78,7 @@ NOTE: there is an alternative way to install dependencies with `poetry`:
7978
pip3 install poetry
8079
poetry install
8180
```
82-
This is mostly used to check dependencies conflicts among packages.
81+
This is mostly used to check dependencies conflicts among packages and to release to `PyPi`.
8382

8483
After installation is successful, to *run the server*:
8584
```bash

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "hydrus"
3-
version = "0.3.1"
3+
version = "0.4.1"
44
description = "Hydra Ecosystem Flagship Server. Deploy REST data for Web 3.0"
55
authors = ["Hydra Ecosystem"]
66
license = "MIT License"
@@ -20,8 +20,8 @@ Flask-SocketIO = "~4.2.1"
2020
gevent = "~20.12.0"
2121
gevent-websocket = "~0.10.1"
2222
greenlet = "~0.4.17"
23-
hydra_python_core = { git = "https://github.com/HTTP-APIs/hydra-python-core" }
24-
hydra_openapi_parser = { git = "https://github.com/HTTP-APIs/hydra-openapi-parser", tag = "0.1.1" }
23+
hydra_python_core = ">=0.2"
24+
hydra_openapi_parser = ">=0.2"
2525
itsdangerous = "~1.1.0"
2626
Jinja2 = "~2.10.3"
2727
lifter = "~0.4.1"

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ Flask-SocketIO==4.2.1
1111
gevent==20.12.0
1212
gevent-websocket==0.10.1
1313
greenlet==0.4.17
14-
git+https://github.com/HTTP-APIs/hydra-python-core@master#egg=hydra_python_core
15-
git+https://github.com/HTTP-APIs/hydra-openapi-parser@0.1.1#egg=hydra_openapi_parser
14+
hydra_python_core
15+
hydra_openapi_parser
1616
itsdangerous==1.1.0
1717
Jinja2==2.10.3
1818
lifter==0.4.1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
setup(
3131
name="hydrus",
3232
include_package_data=True,
33-
version="0.3.1",
33+
version="0.4.1",
3434
description="Hydra Ecosystem Flagship Server. Deploy REST data for Web 3.0",
3535
long_description=open("README.md").read(),
3636
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)