Skip to content
This repository was archived by the owner on Feb 23, 2026. It is now read-only.

Commit 4fae4f9

Browse files
committed
chore(main): release 1.24.0.dev0
1 parent 947db08 commit 4fae4f9

3 files changed

Lines changed: 20 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
# Changelog
22

3+
## [1.24.0.dev0](https://github.com/googleapis/proto-plus-python/compare/v1.22.3...v1.24.0dev0) (2024-02-14)
4+
5+
6+
### Features
7+
8+
* Add `always_print_fields_with_no_presence` fields to `to_json` and `to_dict` ([#433])(https://github.com/googleapis/proto-plus-python/pull/433)
9+
10+
11+
### Bug Fixes
12+
13+
* Fix compatibility with `protobuf==5.26.0rc2` ([#433])(https://github.com/googleapis/proto-plus-python/pull/433)
14+
15+
16+
### Documentation
17+
18+
* Deprecate field `including_default_value_fields` in `to_json` and `to_dict` ([#433])(https://github.com/googleapis/proto-plus-python/pull/433)
19+
20+
321
## [1.23.0](https://github.com/googleapis/proto-plus-python/compare/v1.22.3...v1.23.0) (2023-12-01)
422

523

proto/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414
#
15-
__version__ = "1.23.0"
15+
__version__ = "1.24.0.dev0"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
version = None
2424

2525
with open(os.path.join(PACKAGE_ROOT, "proto/version.py")) as fp:
26-
version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+(?=\")", fp.read())
26+
version_candidates = re.findall(r"(?<=\")\d+.\d+.\d+.dev\d+", fp.read())
2727
assert len(version_candidates) == 1
2828
version = version_candidates[0]
2929

0 commit comments

Comments
 (0)