diff --git a/CHANGELOG.md b/CHANGELOG.md index 91da583..5e18552 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.1 - 2023-12-31 + +- Removed debug code. + + ## v1.0.0 - 2023-12-30 - Initial release. diff --git a/gleam.toml b/gleam.toml index d64feb0..40b70d4 100644 --- a/gleam.toml +++ b/gleam.toml @@ -1,5 +1,5 @@ name = "justin" -version = "1.0.0" +version = "1.0.1" description = "Convert between snake_case, camelCase, and other cases in Gleam" licences = ["Apache-2.0"] repository = { type = "github", user = "lpil", repo = "justin" } diff --git a/src/justin.gleam b/src/justin.gleam index fae8f21..e443b5c 100644 --- a/src/justin.gleam +++ b/src/justin.gleam @@ -1,5 +1,4 @@ import gleam/string -import gleam/io import gleam/list /// Convert a string to a `snake_case`. @@ -114,7 +113,6 @@ fn split( | [" ", ..in] -> split(in, False, "", add(words, word)) [g, ..in] -> { - io.println(string.inspect(#(g, is_upper(g)))) case is_upper(g) { // Lowercase, not a new word False -> split(in, False, word <> g, words)