Skip to content

Commit

Permalink
new patch version
Browse files Browse the repository at this point in the history
  • Loading branch information
sergio-ivanuzzo committed Aug 29, 2024
2 parents b0199da + f9bd130 commit f24767b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacli"
version = "14.0.0"
version = "14.0.1"
edition = "2021"
authors = ["Sergio Ivanuzzo <[email protected]>"]
description = "Console wow-client, it can be used either as a standalone application or integrated into your own project."
Expand Down Expand Up @@ -32,7 +32,7 @@ sha-1 = { version = "0.9.8", optional = true }
tentacli-crypto = "0.1.0"
tentacli-formatters = "0.1.0"
tentacli-packet = "7.0.0"
tentacli-traits = "8.0.1"
tentacli-traits = "8.0.0"
tentacli-utils = "2.1.0"
tokio = { version = "1", features = ["sync", "net", "io-util", "macros", "time", "rt-multi-thread"] }
#tokio-util = { version = "0.7.10", features = ["io"] }
Expand Down
2 changes: 1 addition & 1 deletion src/primary/traits/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tentacli-traits"
version = "8.0.1"
version = "8.0.2"
edition = "2021"
authors = ["Sergio Ivanuzzo <[email protected]>"]
description = "Traits and types for tentacli and related projects"
Expand Down
6 changes: 1 addition & 5 deletions src/primary/traits/src/types/update_fields.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ use std::ops::Range;
use core::slice::Iter;
use serde::{Serialize};

macro_rules! ignore {( $($ignored:expr)? ) => ( "" )}

#[macro_export]
macro_rules! fields {
(
Expand All @@ -24,12 +22,10 @@ macro_rules! fields {
pub enum $enum_name {
$(
$(#[$variant_attr])*
// ignore! macro is a workaround to allow include "Array" string if $len param exists
#[doc = concat!(
stringify!(FieldValue::$field_type ),
$(
ignore!($len),
"Array",
"Array(", stringify!($len), ")"
)?
)]
$variant,
Expand Down

0 comments on commit f24767b

Please sign in to comment.