-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.goreleaser.yml
More file actions
57 lines (51 loc) · 1.62 KB
/
.goreleaser.yml
File metadata and controls
57 lines (51 loc) · 1.62 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
version: 2
project_name: ami-gin
builds:
- skip: true
release:
github:
owner: amikos-tech
name: ami-gin
draft: false
prerelease: auto
header: |
{{- if eq .Tag "v0.1.0" -}}
First public open-source release of GIN Index.
This `v0.1.0` cut publishes the library-first module surface and the current adopter guidance. See README for installation, examples, and the current known limitations.
{{- else if eq .Tag "v0.2.0" -}}
First feature release since the public OSS launch.
Highlights:
- Adaptive high-cardinality indexing keeps exact pruning for hot values while compacting the long tail.
- Derived representations add companion transformer-backed query aliases via `gin.As(alias, value)`.
- Indexes built by `v0.1.0` must be rebuilt; `Decode()` now expects wire format `v8`.
{{- else -}}
GIN Index {{ .Tag }} release.
This release continues the library-first module surface and the current adopter guidance. See README for installation, examples, and known limitations.
{{- end }}
changelog:
sort: asc
filters:
exclude:
- '^Merge pull request'
- '^Merge branch'
groups:
- title: Features
regexp: '^feat(\(.+\))?:'
order: 1
- title: Fixes
regexp: '^fix(\(.+\))?:'
order: 2
- title: Docs
regexp: '^docs(\(.+\))?:|^test:'
order: 3
- title: CI/Release
regexp: '^ci(\(.+\))?:'
order: 4
- title: Dependencies
regexp: '^build\(deps\):|^deps(\(.+\))?:'
order: 5
- title: Project
regexp: '^Phase 0?[0-9]+:|^\[WIP\]|^"Claude '
order: 6
- title: Other
order: 999