Skip to content

Commit c73148a

Browse files
author
Lucas Mendes Mota da Fonseca
authored
Release 1.0.0 (#22)
* Add first release changes to changelog * Update and fix workflow according to new security rules * Update setup version to 1.0.0
1 parent ab58808 commit c73148a

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- name: Build package
1919
run: make package
2020

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

2424
- name: Create release
@@ -29,7 +29,7 @@ jobs:
2929
tag_name: ${{ env.version }}
3030
release_name: Release ${{ env.version }}
3131

32-
- name: Release already exist
32+
- name: Check if release already exists
3333
if: ${{ failure() }}
3434
run: echo Release already exist
3535

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,15 @@
22
All notable changes to this project will be documented in this file.
33

44
Preferably use **Added**, **Changed**, **Removed** and **Fixed** topics in each release or unreleased log for a better organization.
5+
6+
## [1.0.0](https://github.com/quintoandar/hive-metastore-client/releases/tag/1.0.0)
7+
First modules and entities of Hive Metastore Client package.
8+
9+
### Added
10+
* Adding thrift files in project ([#4](https://github.com/quintoandar/hive-metastore-client/pull/4))
11+
* Adding thrift python files ([#9](https://github.com/quintoandar/hive-metastore-client/pull/9))
12+
* 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))
13+
* Adding DatabaseBuilder ([#13](https://github.com/quintoandar/hive-metastore-client/pull/13))
14+
* Adding TableBuilder, ColumnBuilder, SerDeInfoBuilder and StorageDescriptorBuilder ([#15](https://github.com/quintoandar/hive-metastore-client/pull/15))
15+
* Adding PartitionBuilder and method `add_partitions_to_table` ([#17](https://github.com/quintoandar/hive-metastore-client/pull/17))
16+
* Adding method `add_columns_to_table` ([#18](https://github.com/quintoandar/hive-metastore-client/pull/18))

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import find_packages, setup
22

33
__package_name__ = "hive_metastore_client"
4-
__version__ = "0.0.1"
4+
__version__ = "1.0.0"
55
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"
66

77
with open("requirements.txt") as f:

0 commit comments

Comments
 (0)