Skip to content

Commit

Permalink
build: update to version 0.5.20
Browse files Browse the repository at this point in the history
  • Loading branch information
linux-china committed Oct 5, 2024
1 parent 71dba1f commit dbd89e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

Nothing Yet!

# Version 0.5.19 (2024-10-05)
# Version 0.5.20 (2024-10-05)

* Add `smtp_send(url, from, to, subject, body)` function to send email
* Add MQTT support: `publish("mqtt://servername:1883/topic", body)`
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zawk"
version = "0.5.18"
version = "0.5.20"
authors = ["Eli Rosenthal <[email protected]>", "linux_china <[email protected]>"]
edition = "2021"
description = "An efficient Awk-like language implementation by Rust with stdlib"
Expand Down
2 changes: 1 addition & 1 deletion src/builtins.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ use smallvec::smallvec;

use std::convert::TryFrom;

pub const VERSION: &'static str = "0.5.19";
pub const VERSION: &'static str = "0.5.20";

#[derive(Copy, Clone, Debug, PartialEq, Eq)]
pub enum Function {
Expand Down

0 comments on commit dbd89e3

Please sign in to comment.