Skip to content

Commit 6b76bcf

Browse files
committed
updated from release 1.3.1
1 parent 0590279 commit 6b76bcf

File tree

4 files changed

+18
-13
lines changed

4 files changed

+18
-13
lines changed

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,16 @@ All notable changes to the `python-domino` library will be documented in this fi
66

77
### Added
88

9+
### Changed
10+
11+
## 1.3.1
12+
### Added
13+
914
### Changed
1015
* Updated request with retry to avoid long down time during Gateway timeout or pool connection drops
16+
* Updated jobs tests cases
1117

1218
## 1.3.0
13-
1419
### Added
1520
* Added datasets_upload_files endpoint plus tests
1621
* Updated Projects and Datasets documentation

README.adoc

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

3-
:latest-version: 1.3.0
3+
:latest-version: 1.3.1
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).
@@ -34,7 +34,7 @@ The `python-domino` library is compatible with different versions of Domino:
3434
| {python-domino-repo}/archive/1.2.2.zip[1.2.2] or Higher
3535

3636
| 5.10.0 or higher
37-
| {python-domino-repo}/archive/1.3.0.zip[1.3.0] or Higher
37+
| {python-domino-repo}/archive/1.3.1.zip[1.3.1] or Higher
3838
|===
3939

4040
== Development

README.md

+9-9
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.3.0`.
10+
The latest released version of `python-domino` is `1.3.1`.
1111

1212
# Version compatibility matrix
1313

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

2525
# Development
2626

@@ -110,7 +110,7 @@ See
110110
## Projects
111111

112112
See
113-
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/example_projects_usage.py)
113+
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.1/examples/example_projects_usage.py)
114114
for example code.
115115

116116
### project_create(project_name, owner_username=None)
@@ -146,7 +146,7 @@ project, the packages and libraries it uses, or the source of the data
146146
within.
147147

148148
See
149-
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/example_projects_usage.py)
149+
[`example_projects_usage.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.1/examples/example_projects_usage.py)
150150
for example code.
151151

152152
### tags_list(\*project_id)
@@ -190,9 +190,9 @@ Remove a tag from a project.
190190

191191
See these code example files:
192192

193-
- [`start_run_and_check_status.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/start_run_and_check_status.py)
193+
- [`start_run_and_check_status.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.1/examples/start_run_and_check_status.py)
194194

195-
- [`export_runs.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/export_runs.py)
195+
- [`export_runs.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.1/examples/export_runs.py)
196196

197197
### runs_list()
198198

@@ -276,9 +276,9 @@ Get `stdout` emitted by a particular execution.
276276

277277
See these code example files:
278278

279-
- [`upload_file.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/upload_file.py)
279+
- [`upload_file.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.1/examples/upload_file.py)
280280

281-
- [`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)
281+
- [`upload_and_run_file_and_download_results.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.1/examples/upload_and_run_file_and_download_results.py)
282282

283283
### files_list(commitId, path)
284284

@@ -435,7 +435,7 @@ through the Domino UI or through workload executions.
435435
See [Domino
436436
Datasets](https://docs.dominodatalab.com/en/latest/user_guide/0a8d11/datasets-overview/)
437437
for more details, and
438-
[`example_dataset.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.0/examples/example_dataset.py)
438+
[`example_dataset.py`](https://github.com/dominodatalab/python-domino/blob/release-1.3.1/examples/example_dataset.py)
439439
for example code.
440440

441441
### datasets_list(project_id=None)

domino/_version.py

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

0 commit comments

Comments
 (0)