Skip to content

Commit e1ba254

Browse files
authored
setup changelog (#9)
1 parent ce6a3b6 commit e1ba254

File tree

2 files changed

+62
-0
lines changed

2 files changed

+62
-0
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
## 0.1.0
4+
5+
### Added
6+
7+
* v0.1.0 `FileMetadata` table, used for tracking object storage metadata.
8+
* v0.1.0 `RowMetadataRegistry` and `RowMetadataSource`, an abstraction layer for metadata used in incremental view maintenance.
9+
* v0.1.0 `ListingTableLike` and `Materialized` traits, an API for describing Hive-partitioned tables in object storage.
10+
* v0.1.0 `mv_dependencies` and `stale_files` UDTFs, the core features for incremental view maintenance.

release-plz.toml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
# Licensed to the Apache Software Foundation (ASF) under one
2+
# or more contributor license agreements. See the NOTICE file
3+
# distributed with this work for additional information
4+
# regarding copyright ownership. The ASF licenses this file
5+
# to you under the Apache License, Version 2.0 (the
6+
# "License"); you may not use this file except in compliance
7+
# with the License. You may obtain a copy of the License at
8+
#
9+
# http://www.apache.org/licenses/LICENSE-2.0
10+
#
11+
# Unless required by applicable law or agreed to in writing,
12+
# software distributed under the License is distributed on an
13+
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
14+
# KIND, either express or implied. See the License for the
15+
# specific language governing permissions and limitations
16+
# under the License.
17+
18+
[changelog]
19+
body = """
20+
21+
## [{{ version | trim_start_matches(pat="v") }}]\
22+
{%- if release_link -%}\
23+
({{ release_link }})\
24+
{% endif %} \
25+
- {{ timestamp | date(format="%Y-%m-%d") }}
26+
{% for group, commits in commits | group_by(attribute="group") %}
27+
### {{ group | upper_first }}
28+
{% for commit in commits %}
29+
{%- if commit.scope -%}
30+
- *({{commit.scope}})* {% if commit.breaking %}[**breaking**] {% endif %}\
31+
{{ commit.message }}{{ self::username(commit=commit) }}\
32+
{%- if commit.links %} \
33+
({% for link in commit.links %}[{{link.text}}]({{link.href}}) {% endfor -%})\
34+
{% endif %}
35+
{% else -%}
36+
- {% if commit.breaking %}[**breaking**] {% endif %}{{ commit.message }}{{ self::username(commit=commit) }}{{ self::pr(commit=commit) }}
37+
{% endif -%}
38+
{% endfor -%}
39+
{% endfor %}
40+
{%- if remote.contributors %}
41+
### Contributors
42+
{% for contributor in remote.contributors %}
43+
* @{{ contributor.username }}
44+
{%- endfor %}
45+
{% endif -%}
46+
{%- macro username(commit) -%}
47+
{% if commit.remote.username %} (by @{{ commit.remote.username }}){% endif -%}
48+
{% endmacro -%}
49+
{%- macro pr(commit) -%}
50+
{% if commit.remote.pr_number %} - #{{ commit.remote.pr_number }}{% endif -%}
51+
{% endmacro -%}
52+
"""

0 commit comments

Comments
 (0)