Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 52 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
# Change Log

All notable changes to this project will be documented in this file.

## [Unreleased]

### Added

- Added feature A.
- Added feature B.

### Changed

- Changed behavior of C.
- Optimized performance of D.

### Removed

- Removed feature E.

### Fixed

- Fixed issue F.

## [0.3.0] - 2023-04-12

### Added

- IPFS folder uploads
- IPFS folder downloads
- With Replace parameter, user can replace the file with the same name.

### Changed

- Changed package name from mcs -> swan_mcs
- list_buckets function now returns a list of Bucket objects or None if error occurs. (Was False before)
- list files function now returns a list of File objects or None if error occurs. (Was False before)
- upload_file function now returns a File object or None if error occurs. (Was False before)
- upload_folder function now returns a list of File objects or None if error occurs. (Was an empty list before)
- delete_file function now returns True if successful or False if error occurs. (Was None before)
- create_folder function now returns True if successful or False if error occurs. (Was None before)

### Removed

### Fixed
- Help user to create Hierarchical Relationships base on the object name so user can see the Hierarchical Relationships
in the MCS web console.

[Unreleased]: https://github.com/your-project/compare/v1.0.0...HEAD

[0.3.0]: https://github.com/filswan/python-mcs-sdk/releases/tag/v0.3.0

File renamed without changes.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from pathlib import Path

this_directory = Path(__file__).parent
long_description = (this_directory / "PipReleaseDoc.md").read_text()
long_description = (this_directory / "PIPRELEASEDOC.md").read_text()

setup(name="python-mcs-sdk",
version="0.2.13",
Expand Down