Skip to content

Commit c643c44

Browse files
Version 1.0.0
1 parent b679ad2 commit c643c44

File tree

4 files changed

+68
-14
lines changed

4 files changed

+68
-14
lines changed

CHANGELOG.md

Lines changed: 63 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,65 @@
1-
# Changelog
21

3-
## 0.3.0
2+
1.0.0 / 2020-04-01
3+
=============
4+
* Clean up and refactor code
45

5-
- Added simple commands - `cld upload` instead of `cld uploader upload`
6-
- Cloudinary config `--from_url` option
6+
0.4.2 / 2020-03-23
7+
=============
8+
9+
New functionality and features
10+
------------------------------
11+
12+
* Add folder: prefix to Search API query in sync
13+
* Add Python installation information
14+
* Disable Windows color formatting
15+
16+
Other Changes
17+
-------------
18+
19+
* Update help and README
20+
* Fix sync pull
21+
* Fix populating templates with config
22+
* Remove specific dependency versions in requirements.txt
23+
* Remove some details and add links to the CLI documentation.
24+
* Update configuration via `os.environ.update` and `cloudinary.reset_config`
25+
* Improve PEP 8 compliance
26+
* Hotfix for pycloudinary 1.18.1 incompatibility
27+
* Update README and usage of various commands
28+
29+
0.3.0 / 2019-09-09
30+
===================
31+
32+
New functionality and features
33+
------------------------------
34+
35+
* Add simple commands - `cld upload` instead of `cld uploader upload`
36+
* Improve PEP8 compliance
37+
* Fix csv generation
38+
* Add `--from_url` option for config
39+
* Add simple commands
40+
* Clean up file structure - move non-core modules to a new folder
41+
* Add csv report functionality for Search API
42+
* Add support of multi-threading
43+
* Add `--save` for saving outputs
44+
* Add `sync` command
45+
* Add `migrate`, `auto-paginate` for admin api
46+
* Fix `-A` for search API
47+
* Add additional configuration feature
48+
* Add `auto-paginate` + `filter fields` option for Admin API
49+
* Migrate ls method into search
50+
* Add additional functionality
51+
* Add formatting
52+
* Add doc flags
53+
* Add filter fields
54+
* Add custom templates
55+
* Add User Agent
56+
* Add video player
57+
* Update template directory
58+
* Initial commit
59+
60+
61+
Other Changes
62+
-------------
63+
64+
* Include pycloudinary version in user agent
65+
* Rename media library widget

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -218,9 +218,3 @@ cld config [options]
218218
```
219219
220220
For details, see the [Cloudinary CLI documentation](https://cloudinary.com/documentation/cloudinary_cli#config).
221-
222-
223-
# TODOs
224-
- Globbing support
225-
- Local GUI support
226-
- More code samples

cloudinary_cli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "0.4.2"
1+
__version__ = "1.0.0"
22

33
import cloudinary
44

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
setuptools.setup(
1111
name="cloudinary-cli",
1212
version=__version__,
13-
author="Brian Luk",
14-
author_email="[email protected]",
13+
author="Cloudinary, Brian Luk",
14+
1515
classifiers=[
1616
"Programming Language :: Python :: 3 :: Only",
1717
"License :: OSI Approved :: MIT License",
@@ -26,11 +26,12 @@
2626
},
2727
long_description=long_description,
2828
long_description_content_type="text/markdown",
29-
url="https://github.com/brian-cloudinary/cloudinary-cli",
29+
url="https://github.com/cloudinary/cloudinary-cli",
3030
packages=setuptools.find_packages(),
3131
keywords='cloudinary cli pycloudinary image video digital asset management command line interface transformation '
3232
'friendly easy flexible',
3333
license="MIT",
34+
python_requires='>=3.6.0',
3435
setup_requires=["pytest-runner"],
3536
tests_require=["pytest"],
3637
install_requires=[

0 commit comments

Comments
 (0)