Skip to content

Commit a2a6d91

Browse files
committed
RDBC-516 Stable Release
1 parent 6866b78 commit a2a6d91

File tree

3 files changed

+33
-5
lines changed

3 files changed

+33
-5
lines changed

README.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Official Python client for RavenDB NoSQL Database 🐍
33

44
## Installation
5-
Install from [PyPi](https://pypi.python.org/pypi), as [ravendb](https://pypi.org/project/ravendb/5.2.0b3/).
5+
Install from [PyPi](https://pypi.python.org/pypi), as [ravendb](https://pypi.org/project/ravendb).
66
```bash
7-
pip install ravendb==5.2.0b3
7+
pip install ravendb
88
````
99
## Introduction and changelog
1010
Python client API (v5.2) for [RavenDB](https://ravendb.net/) , a NoSQL document database.
@@ -23,6 +23,20 @@ Although new API isn't compatible with the previous one, it comes with **many im
2323
2424
## What's new?
2525

26+
27+
28+
###### 5.2.0 (stable)
29+
- **Subscriptions**
30+
- Document streams
31+
- Secured subscriptions
32+
33+
34+
- **Querying**
35+
- Major bugfixes
36+
- Spatial querying and indexing
37+
- Highlighting fixes
38+
- **Custom document parsers & loaders**
39+
2640
###### 5.2.0b3
2741
- **New features**
2842
- Conditional Load

README_pypi.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@
22
# Official Python client for RavenDB NoSQL Database
33

44
## Installation
5-
Install from [PyPi](https://pypi.python.org/pypi), as [ravendb](https://pypi.org/project/ravendb/Optional[/).
5+
Install from [PyPi](https://pypi.python.org/pypi), as [ravendb](https://pypi.org/project/ravendb/).
66
```bash
7-
pip install ravendb==5.2.0b3
7+
pip install ravendb
88
````
99
## Introduction
1010
Python client API (v5.2) for [RavenDB](https://ravendb.net/) , a NoSQL document database.
@@ -19,6 +19,20 @@ Although new API isn't compatible with the previous one, it comes with **many im
1919
## What's new?
2020

2121

22+
23+
###### 5.2.0 (stable)
24+
- **Subscriptions**
25+
- Document streams
26+
- Secured subscriptions
27+
28+
29+
- **Querying**
30+
- Major bugfixes
31+
- Spatial querying and indexing
32+
- Highlighting fixes
33+
- **Custom document parsers & loaders**
34+
35+
2236
###### 5.2.0b3
2337
- **New features**
2438
- Conditional Load

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
setup(
44
name="ravendb",
55
packages=find_packages(exclude=["*.tests.*", "tests", "*.tests", "tests.*"]),
6-
version="5.2.0beta3",
6+
version="5.2.0",
77
long_description_content_type="text/markdown",
88
long_description=open("README_pypi.md").read(),
99
description="Python client for RavenDB NoSQL Database",

0 commit comments

Comments
 (0)