Skip to content

Commit

Permalink
change version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
cyteon committed Jul 17, 2024
1 parent f7e09c4 commit ec5cf35
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion gleam.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = "discord_gleam"
version = "0.0.0"
version = "0.0.1"

# Fill out these fields if you intend to generate HTML documentation or publish
# your project to the Hex package manager.
Expand Down
2 changes: 1 addition & 1 deletion src/discord_gleam/http/request.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ pub fn new(method: http.Method, path: String) -> request.Request(String) {
|> request.prepend_header("accept", "application/json")
|> request.prepend_header(
"User-Agent",
"DiscordBot (https://github.com/cyteon/discord_gleam, 0.0.0)",
"DiscordBot (https://github.com/cyteon/discord_gleam, 0.0.1)",
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/discord_gleam/ws/event_loop.gleam
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ pub fn main(bot: bot.Bot, event_handlers: List(event_handler.EventHandler)) {
|> request.set_path("/?v=10&encoding=json")
|> request.set_header(
"User-Agent",
"DiscordBot (https://github.com/cyteon/discord_gleam, 0.0.0)",
"DiscordBot (https://github.com/cyteon/discord_gleam, 0.0.1)",
)
|> request.set_header("Host", "gateway.discord.gg")
|> request.set_header("Connection", "Upgrade")
Expand Down

0 comments on commit ec5cf35

Please sign in to comment.