Skip to content

Commit d49ec19

Browse files
committed
bump minor with additive changes, and allign md/adoc versions
1 parent 92b4c42 commit d49ec19

File tree

4 files changed

+24
-10
lines changed

4 files changed

+24
-10
lines changed

CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,22 @@
33
All notable changes to the `python-domino` library will be documented in this file.
44

55
## [Unreleased]
6+
7+
### Added
8+
9+
### Changed
10+
11+
## 1.3.0
12+
613
### Added
714
* Added datasets_upload_files endpoint plus tests
815
* Updated Projects and Datasets documentation
16+
* Updated Apps documentation
17+
* Added get_blobs_v2 endpoint plus tests
918

1019
### Changed
1120
* Updated version checker
21+
* Marked get_blobs endpoint as deprecated
1222

1323
## 1.2.5RC0
1424
### Added

README.adoc

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
= python-domino
22

3-
:latest-version: 1.2.4
3+
:latest-version: 1.3.0
44
:python-domino-repo: https://github.com/dominodatalab/python-domino
55

66
This library provides bindings for the Domino APIs. It ships with the Domino Standard Environment (DSE).
@@ -32,6 +32,9 @@ The `python-domino` library is compatible with different versions of Domino:
3232

3333
| 5.5.0 or higher
3434
| {python-domino-repo}/archive/1.2.2.zip[1.2.2] or Higher
35+
36+
| 5.10.0 or higher
37+
| {python-domino-repo}/archive/1.3.0.zip[1.3.0] or Higher
3538
|===
3639

3740
== Development

README.md

+9-8
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ See this documentation for details about the APIs:
77

88
- [Legacy APIs](https://dominodatalab.github.io/api-docs/)
99

10-
The latest released version of `python-domino` is `1.2.4`.
10+
The latest released version of `python-domino` is `1.3.0`.
1111

1212
# Version compatibility matrix
1313

@@ -20,6 +20,7 @@ Domino:
2020
| 4.1.0 or higher | [1.0.0](https://github.com/dominodatalab/python-domino/archive/1.0.0.zip) or Higher |
2121
| 5.3.0 or higher | [1.2.0](https://github.com/dominodatalab/python-domino/archive/1.2.1.zip) or Higher |
2222
| 5.5.0 or higher | [1.2.2](https://github.com/dominodatalab/python-domino/archive/1.2.2.zip) or Higher |
23+
| 5.10.0 or higher | [1.3.0](https://github.com/dominodatalab/python-domino/archive/1.3.0.zip) or Higher |
2324

2425
# Development
2526

@@ -103,7 +104,7 @@ See
103104
## Projects
104105

105106
See
106-
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.2.2/examples/example_projects_usage.py)
107+
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/example_projects_usage.py)
107108
for example code.
108109

109110
### project_create(project_name, owner_username=None)
@@ -139,7 +140,7 @@ project, the packages and libraries it uses, or the source of the data
139140
within.
140141

141142
See
142-
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.2.2/examples/example_projects_usage.py)
143+
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/example_projects_usage.py)
143144
for example code.
144145

145146
### tags_list(\*project_id)
@@ -183,9 +184,9 @@ Remove a tag from a project.
183184

184185
See these code example files:
185186

186-
- [`start_run_and_check_status.py`](https://github.com/dominodatalab/python-domino/blob/release-1.2.2/examples/start_run_and_check_status.py)
187+
- [`start_run_and_check_status.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/start_run_and_check_status.py)
187188

188-
- [`export_runs.py`](https://github.com/dominodatalab/python-domino/blob/release-1.2.2/examples/export_runs.py)
189+
- [`export_runs.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/export_runs.py)
189190

190191
### runs_list()
191192

@@ -269,9 +270,9 @@ Get `stdout` emitted by a particular execution.
269270

270271
See these code example files:
271272

272-
- [`upload_file.py`](https://github.com/dominodatalab/python-domino/blob/release-1.2.2/examples/upload_file.py)
273+
- [`upload_file.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/upload_file.py)
273274

274-
- [`upload_and_run_file_and_download_results.py`](https://github.com/dominodatalab/python-domino/blob/release-1.2.2/examples/upload_and_run_file_and_download_results.py)
275+
- [`upload_and_run_file_and_download_results.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/upload_and_run_file_and_download_results.py)
275276

276277
### files_list(commitId, path)
277278

@@ -428,7 +429,7 @@ through the Domino UI or through workload executions.
428429
See [Domino
429430
Datasets](https://docs.dominodatalab.com/en/latest/user_guide/0a8d11/datasets-overview/)
430431
for more details, and
431-
[`example_dataset.py`](https://github.com/dominodatalab/python-domino/blob/release-1.2.2/examples/example_dataset.py)
432+
[`example_dataset.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/example_dataset.py)
432433
for example code.
433434

434435
### datasets_list(project_id=None)

domino/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.2.5RC0"
1+
__version__ = "1.3.0"

0 commit comments

Comments
 (0)