Skip to content

Commit 84c073a

Browse files
authored
Merge pull request #486 from TheHive-Project/483-use-thehive-v557-in-integration-tests
#485 - Release 2.0.0
2 parents 7cda7e1 + a8fe839 commit 84c073a

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

README.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@
3838
# Introduction
3939

4040
> [!IMPORTANT]
41-
> thehive4py v1.x is not maintained anymore as TheHive v3 and v4 are end of life. thehive4py v2.x is a complete rewrite and is not compatible with thehive4py v1.x. The library is still in beta phase.
41+
> thehive4py v1.x is not maintained anymore as TheHive v3 and v4 are end of life. thehive4py v2.x is a complete rewrite and is not compatible with thehive4py v1.x.
4242
4343
**What's New:** This is a rebooted version of `thehive4py` designed specifically for TheHive 5. Stay tuned, as we have more exciting updates in store!
4444

@@ -55,12 +55,9 @@ Feel free to explore the library's capabilities and contribute to its developmen
5555
The `thehive4py` can be installed with pip like:
5656

5757
```
58-
pip install "thehive4py>=2.0.0b"
58+
pip install thehive4py
5959
```
6060

61-
> [!WARNING]
62-
> Since `thehive4py` 2.x is still in beta it is necessary to specify the beta version number during pip install, otherwise the latest version of 1.x would be installed.
63-
6461
## Create a client
6562

6663
You can create a `thehive4py` client instance in two different ways, depending on your authentication method:
@@ -88,7 +85,7 @@ from thehive4py import TheHiveApi
8885

8986
hive = TheHiveApi(
9087
url="https://thehive.example.com",
91-
apikey="c0ff33nc0d3",
88+
apikey="h1v3b33",
9289
)
9390
```
9491

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ Feel free to explore the library's capabilities and contribute to its developmen
5050
The `thehive4py` can be installed with pip like:
5151

5252
```bash
53-
pip install "thehive4py>=2.0.0b"
53+
pip install thehive4py
5454
```
5555

5656

docs/release-notes.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@
66
}
77
</style>
88

9+
## 2.0.0 (2025-08-04)
10+
### Other
11+
* [#480](https://github.com/TheHive-Project/TheHive4py/issues/480) - Fix deploy_docs dev script by [@Kamforka](https://github.com/Kamforka) in [#481](https://github.com/TheHive-Project/TheHive4py/pull/481)
12+
* [#480](https://github.com/TheHive-Project/TheHive4py/issues/480) - Fix deploy_docs flag typo by [@Kamforka](https://github.com/Kamforka) in [#482](https://github.com/TheHive-Project/TheHive4py/pull/482)
13+
* [#483](https://github.com/TheHive-Project/TheHive4py/issues/483) - Use TheHive v5.5.7 in integration tests by [@Kamforka](https://github.com/Kamforka) in [#484](https://github.com/TheHive-Project/TheHive4py/pull/484)
14+
15+
**Full Changelog**: [2.0.0b13...2.0.0](https://github.com/TheHive-Project/TheHive4py/compare/2.0.0b13...2.0.0)
16+
917
## 2.0.0b13 (2025-07-15)
1018
### Added
1119
* [#441](https://github.com/TheHive-Project/TheHive4py/issues/441) - Add `custom_field.CustomFieldType` type by [@Kamforka](https://github.com/Kamforka) in [#466](https://github.com/TheHive-Project/TheHive4py/pull/466)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
55
[project]
66
name = "thehive4py"
77
description = "Python client for TheHive5"
8-
version = "2.0.0b13"
8+
version = "2.0.0"
99
requires-python = ">=3.9"
1010
dependencies = ["requests~=2.27", "typing_extensions==4.*"]
1111
readme = "README.md"

0 commit comments

Comments
 (0)