File tree Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Expand file tree Collapse file tree 3 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 18
18
- name : Build package
19
19
run : make package
20
20
21
- - name : Get version
21
+ - name : Get new version
22
22
run : echo "version=$(grep __version__ setup.py | head -1 | cut -d \" -f2 | cut -d \' -f2)" >> $GITHUB_ENV
23
23
24
24
- name : Create release
29
29
tag_name : ${{ env.version }}
30
30
release_name : Release ${{ env.version }}
31
31
32
- - name : Release already exist
32
+ - name : Check if release already exists
33
33
if : ${{ failure() }}
34
34
run : echo Release already exist
35
35
Original file line number Diff line number Diff line change 2
2
All notable changes to this project will be documented in this file.
3
3
4
4
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 ) )
Original file line number Diff line number Diff line change 1
1
from setuptools import find_packages , setup
2
2
3
3
__package_name__ = "hive_metastore_client"
4
- __version__ = "0 .0.1 "
4
+ __version__ = "1 .0.0 "
5
5
__repository_url__ = "https://github.com/quintoandar/hive-metastore-client"
6
6
7
7
with open ("requirements.txt" ) as f :
You can’t perform that action at this time.
0 commit comments