Skip to content

Commit

Permalink
Release 1.0.0 (#22)
Browse files Browse the repository at this point in the history
* Add first release changes to changelog

* Update and fix workflow according to new security rules

* Update setup version to 1.0.0
  • Loading branch information
Lucas Mendes Mota da Fonseca authored Dec 3, 2020
1 parent ab58808 commit c73148a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Build package
run: make package

- name: Get version
- name: Get new version
run: echo "version=$(grep __version__ setup.py | head -1 | cut -d \" -f2 | cut -d \' -f2)" >> $GITHUB_ENV

- name: Create release
Expand All @@ -29,7 +29,7 @@ jobs:
tag_name: ${{ env.version }}
release_name: Release ${{ env.version }}

- name: Release already exist
- name: Check if release already exists
if: ${{ failure() }}
run: echo Release already exist

Expand Down
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,15 @@
All notable changes to this project will be documented in this file.

Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each release or unreleased log for a better organization.

## [1.0.0](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.0)
First modules and entities of Hive Metastore Client package.

### Added
* Adding thrift files in project ([#4](https://github.com/quintoandar/hive-metastore-client/pull/4))
* Adding thrift python files ([#9](https://github.com/quintoandar/hive-metastore-client/pull/9))
* Create clients main class ([#16](https://github.com/quintoandar/hive-metastore-client/pull/16) and [#10](https://github.com/quintoandar/hive-metastore-client/pull/10))
* Adding DatabaseBuilder ([#13](https://github.com/quintoandar/hive-metastore-client/pull/13))
* Adding TableBuilder, ColumnBuilder, SerDeInfoBuilder and StorageDescriptorBuilder ([#15](https://github.com/quintoandar/hive-metastore-client/pull/15))
* Adding PartitionBuilder and method `add_partitions_to_table` ([#17](https://github.com/quintoandar/hive-metastore-client/pull/17))
* Adding method `add_columns_to_table` ([#18](https://github.com/quintoandar/hive-metastore-client/pull/18))
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup

__package_name__ = "hive_metastore_client"
__version__ = "0.0.1"
__version__ = "1.0.0"
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"

with open("requirements.txt") as f:
Expand Down

0 comments on commit c73148a

Please sign in to comment.