Skip to content

Commit 6038c43

Browse files
committed
v1.0.1
1 parent 9f6e962 commit 6038c43

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

.github/workflows/release.yml

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ on:
44
push:
55
tags:
66
- v*.*.*
7+
78
jobs:
89
release:
910
uses: TanklesXL/gleam_actions/.github/workflows/release.yaml@main

CHANGELOG.md

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
# Changelog
22

3-
## [Unreleased](https://github.com/TanklesXL/glint/compare/v1.0.0-rc2...HEAD)
3+
## [Unreleased](https://github.com/TanklesXL/glint/compare/v1.0.1...HEAD)
44

55
# v1
66

7+
## [1.0.1](https://github.com/TanklesXL/glint/compare/v1.0.0...v1.0.1)
8+
9+
- updated gleam stdlib to >=0.39
10+
- replace calls to `dict.update` with `dict.upsert`
11+
712
## [1.0.0](https://github.com/TanklesXL/glint/compare/v0.18.1...v1.0.0)
813

914
- replaced the pipe-based command builder API with a `use`-based one that provides better ergonomics

gleam.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name = "glint"
2-
version = "1.0.0"
2+
version = "1.0.1"
33

44
# Fill out these fields if you intend to generate HTML documentation or publishname = "glint"
55
# your project to the Hex package manager.
@@ -18,7 +18,7 @@ links = [
1818
gleam = "~> 1.0"
1919

2020
[dependencies]
21-
gleam_stdlib = "~> 0.36 or ~> 1.0"
21+
gleam_stdlib = "~> 0.39 or ~> 1.0"
2222
snag = "~> 0.3"
2323
gleam_community_ansi = "~> 1.0"
2424
gleam_community_colour = "~> 1.0"

manifest.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ argv = { version = ">= 1.0.2 and < 2.0.0" }
2626
birdie = { version = ">= 1.1.8 and < 2.0.0" }
2727
gleam_community_ansi = { version = "~> 1.0" }
2828
gleam_community_colour = { version = "~> 1.0" }
29-
gleam_stdlib = { version = "~> 0.36 or ~> 1.0" }
29+
gleam_stdlib = { version = "~> 0.39 or ~> 1.0" }
3030
gleeunit = { version = "~> 1.0" }
3131
snag = { version = "~> 0.3" }

0 commit comments

Comments
 (0)