Skip to content

Commit

Permalink
feat: tags field support in publish package
Browse files Browse the repository at this point in the history
  • Loading branch information
joamag committed Aug 7, 2022
1 parent 6ca2fc2 commit 3a32b46
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
@@ -0,0 +1,20 @@
# Changelog

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

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

### Added

* `tags` field support in `publish_package`

### Changed

*

### Fixed

*
2 changes: 2 additions & 0 deletions src/repos/package.py
Expand Up @@ -73,6 +73,7 @@ def publish_package(
name,
version,
branch = None,
tags = None,
contents = None,
url = None,
url_tags = None,
Expand All @@ -92,6 +93,7 @@ def publish_package(
name = name,
version = version,
branch = branch,
tags = tags,
contents = contents,
url = url,
url_tags = url_tags,
Expand Down

0 comments on commit 3a32b46

Please sign in to comment.