We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 02a73d2 + eb48dc8 commit 5e8c284Copy full SHA for 5e8c284
2 files changed
.github/workflows/release.yml
@@ -103,7 +103,9 @@ jobs:
103
HEXPM_API_KEY: ${{ secrets.HEX_API_KEY }}
104
run: |
105
echo "Publishing package to Hex..."
106
- gleam publish --yes
+ # For versions < 1.0.0, gleam publish requires explicit confirmation
107
+ # We pipe the required text to accept publishing 0.x versions
108
+ echo "I am not using semantic versioning" | gleam publish --yes
109
110
- name: Create GitHub Release
111
if: startsWith(github.ref, 'refs/tags/')
gleam.toml
@@ -1,5 +1,5 @@
1
name = "sparkling"
2
-version = "0.1.0"
+version = "1.0.0"
3
description = "A fast, type-safe ClickHouse client for Gleam with composable queries"
4
licenses = ["Apache-2.0"]
5
authors = ["Scaratti Daniele aka lupodevelp"]
0 commit comments