Skip to content
This repository was archived by the owner on Sep 29, 2025. It is now read-only.

Commit 0de34b1

Browse files
committed
Release 0.11.0 - many thanks to klanderson, wli, UgoM and brycethornton for contributions
1 parent f2df96d commit 0de34b1

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ mock_db.collection('users').order_by('born').get()
6969
mock_db.collection('users').order_by('born', direction='DESCENDING').get()
7070
mock_db.collection('users').limit(5).get()
7171
mock_db.collection('users').where('born', '==', 1815).get()
72+
mock_db.collection('users').where('born', '!=', 1815).get()
7273
mock_db.collection('users').where('born', '<', 1815).get()
7374
mock_db.collection('users').where('born', '>', 1815).get()
7475
mock_db.collection('users').where('born', '<=', 1815).get()
@@ -125,3 +126,7 @@ transaction.commit()
125126
* [Kristof Krenn](https://github.com/KrennKristof)
126127
* [Ben Phillips](https://github.com/tavva)
127128
* [Rene Delgado](https://github.com/RDelg)
129+
* [klanderson](https://github.com/klanderson)
130+
* [William Li](https://github.com/wli)
131+
* [Ugo Marchand](https://github.com/UgoM)
132+
* [Bryce Thornton](https://github.com/brycethornton)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="mock-firestore",
8-
version="0.10.0",
8+
version="0.11.0",
99
author="Matt Dowds",
1010
description="In-memory implementation of Google Cloud Firestore for use in tests",
1111
long_description=long_description,

0 commit comments

Comments
 (0)