Skip to content

Commit

Permalink
add warning to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
TanklesXL committed May 8, 2024
1 parent 03c0716 commit 14782f4
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# glint

> [!WARNING]
> This README is being updated in preperation for glint `v1.0.0`. For documentation on the latest released glint versions please use the hexdocs link found below.
[![Hex Package](https://img.shields.io/hexpm/v/glint?color=ffaff3&label=%F0%9F%93%A6)](https://hex.pm/packages/glint)
[![Hex.pm](https://img.shields.io/hexpm/dt/glint?color=ffaff3)](https://hex.pm/packages/glint)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3?label=%F0%9F%93%9A)](https://hexdocs.pm/glint/)
Expand Down Expand Up @@ -54,10 +57,10 @@ import glint
// this function returns the builder for the caps flag
fn caps_flag() -> flag.FlagBuilder(Bool) {
fn caps_flag() -> glint.Flag(Bool) {
glint.bool_flag("caps")
|> flag.flag_default(False)
|> flag.flag_help("Capitalize the hello message")
|> glint.flag_default(False)
|> glint.flag_help("Capitalize the hello message")
}
/// the glint command that will be executed
Expand Down

0 comments on commit 14782f4

Please sign in to comment.