Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

AUTO : Forward from alpha to beta #1443

Merged
merged 13 commits into from
Sep 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/standard_rust_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,8 @@ jobs :
continue-on-error: true
- name: Check the modules dependencies
run: cargo +nightly udeps --all-targets --manifest-path ${{ inputs.manifest_path }}
continue-on-error: true
# This part means that all previous steps will be executed and workflow will not stop if they fail, but not this one.
continue-on-error: false

# release:
# if: contains( inputs.commit_message, '+test' ) || contains( inputs.commit_message, 'merge' )
Expand Down Expand Up @@ -125,6 +126,9 @@ jobs :
# run: cargo miri test --manifest-path ${{ inputs.manifest_path }}

will_test :
# This section ensures that `job` `will_test` will only be executed after `checkmate` and if `checkmate` fails, no tests will be run.
needs:
- checkmate
if : contains( inputs.commit_message, '+test' ) || inputs.commiter_username == 'web-flow' || startsWith( inputs.commit_message, 'merge' )
concurrency :
group : standard_rust_push_${{ inputs.module_name }}_${{ github.ref }}_${{ matrix.os }}
Expand Down
46 changes: 23 additions & 23 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ path = "module/alias/std_x"
## data_type

[workspace.dependencies.data_type]
version = "~0.9.0"
version = "~0.10.0"
path = "module/core/data_type"
default-features = false

Expand All @@ -98,7 +98,7 @@ default-features = false
# path = "module/core/type_constructor_derive_pair_meta"

[workspace.dependencies.interval_adapter]
version = "~0.23.0"
version = "~0.24.0"
path = "module/core/interval_adapter"
default-features = false
features = [ "enabled" ]
Expand All @@ -110,21 +110,21 @@ default-features = false
features = [ "enabled" ]

[workspace.dependencies.collection_tools]
version = "~0.11.0"
version = "~0.12.0"
path = "module/core/collection_tools"
default-features = false


## derive

[workspace.dependencies.derive_tools]
version = "~0.27.0"
version = "~0.28.0"
path = "module/core/derive_tools"
default-features = false
features = [ "enabled" ]

[workspace.dependencies.derive_tools_meta]
version = "~0.26.0"
version = "~0.27.0"
path = "module/core/derive_tools_meta"
default-features = false
features = [ "enabled" ]
Expand Down Expand Up @@ -159,24 +159,24 @@ path = "module/alias/fundamental_data_type"
default-features = false

[workspace.dependencies.variadic_from]
version = "~0.22.0"
version = "~0.23.0"
path = "module/core/variadic_from"
default-features = false
features = [ "enabled" ]

[workspace.dependencies.clone_dyn]
version = "~0.23.0"
version = "~0.24.0"
path = "module/core/clone_dyn"
default-features = false
features = [ "enabled" ]

[workspace.dependencies.clone_dyn_meta]
version = "~0.23.0"
version = "~0.24.0"
path = "module/core/clone_dyn_meta"
features = [ "enabled" ]

[workspace.dependencies.clone_dyn_types]
version = "~0.22.0"
version = "~0.23.0"
path = "module/core/clone_dyn_types"
default-features = false
features = [ "enabled" ]
Expand All @@ -201,7 +201,7 @@ default-features = false
## iter

[workspace.dependencies.iter_tools]
version = "~0.20.0"
version = "~0.21.0"
path = "module/core/iter_tools"
default-features = false

Expand All @@ -219,7 +219,7 @@ path = "module/core/for_each"
default-features = false

[workspace.dependencies.former]
version = "~2.8.0"
version = "~2.9.0"
path = "module/core/former"
default-features = false

Expand All @@ -229,12 +229,12 @@ default-features = false
# default-features = false

[workspace.dependencies.former_meta]
version = "~2.8.0"
version = "~2.9.0"
path = "module/core/former_meta"
default-features = false

[workspace.dependencies.former_types]
version = "~2.7.0"
version = "~2.8.0"
path = "module/core/former_types"
default-features = false

Expand All @@ -248,12 +248,12 @@ version = "~0.7.0"
path = "module/core/impls_index_meta"

[workspace.dependencies.mod_interface]
version = "~0.23.0"
version = "~0.24.0"
path = "module/core/mod_interface"
default-features = false

[workspace.dependencies.mod_interface_meta]
version = "~0.23.0"
version = "~0.24.0"
path = "module/core/mod_interface_meta"
default-features = false

Expand All @@ -279,7 +279,7 @@ default-features = false
## macro tools

[workspace.dependencies.macro_tools]
version = "~0.39.0"
version = "~0.40.0"
path = "module/core/macro_tools"
default-features = false

Expand Down Expand Up @@ -333,7 +333,7 @@ default-features = false
## error

[workspace.dependencies.error_tools]
version = "~0.16.0"
version = "~0.17.0"
path = "module/core/error_tools"
default-features = false

Expand All @@ -345,7 +345,7 @@ path = "module/alias/werror"
## string tools

[workspace.dependencies.strs_tools]
version = "~0.16.0"
version = "~0.17.0"
path = "module/core/strs_tools"
default-features = false

Expand All @@ -367,15 +367,15 @@ path = "module/alias/file_tools"
default-features = false

[workspace.dependencies.proper_path_tools]
version = "~0.9.0"
version = "~0.10.0"
path = "module/core/proper_path_tools"
default-features = false


## process tools

[workspace.dependencies.process_tools]
version = "~0.8.0"
version = "~0.9.0"
path = "module/core/process_tools"
default-features = false

Expand Down Expand Up @@ -422,7 +422,7 @@ default-features = false
## ca

[workspace.dependencies.wca]
version = "~0.20.0"
version = "~0.21.0"
path = "module/move/wca"


Expand All @@ -436,7 +436,7 @@ path = "module/move/wcensor"
## willbe

[workspace.dependencies.willbe]
version = "~0.14.0"
version = "~0.15.0"
path = "module/move/willbe"


Expand Down Expand Up @@ -476,7 +476,7 @@ version = "~0.5.0"
path = "module/move/deterministic_rand"

[workspace.dependencies.crates_tools]
version = "~0.12.0"
version = "~0.13.0"
path = "module/move/crates_tools"


Expand Down
2 changes: 1 addition & 1 deletion module/core/clone_dyn/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clone_dyn"
version = "0.23.0"
version = "0.24.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/clone_dyn_meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clone_dyn_meta"
version = "0.23.0"
version = "0.24.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/clone_dyn_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "clone_dyn_types"
version = "0.22.0"
version = "0.23.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/collection_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "collection_tools"
version = "0.11.0"
version = "0.12.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
4 changes: 2 additions & 2 deletions module/core/collection_tools/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ pub mod exposed
pub use prelude::*;

#[ doc( inline ) ]
#[ cfg( feature = "collection_constructors" ) ]
#[ cfg( any( feature = "use_alloc", all( feature = "collection_constructors", not( feature = "no_std" ) ) ) ) ]
pub use crate::
{
vec as dlist,
Expand All @@ -77,7 +77,7 @@ pub mod exposed
};

#[ doc( inline ) ]
#[ cfg( feature = "collection_into_constructors" ) ]
#[ cfg( any( feature = "use_alloc", all( feature = "collection_into_constructors", not( feature = "no_std" ) ) ) ) ]
pub use crate::
{
into_vec,
Expand Down
4 changes: 2 additions & 2 deletions module/core/collection_tools/tests/inc/deque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ fn into_constructor()
exp.push_front( 3 );
assert_eq!( got, exp );

let _got : DequeList< &str > = the_module::deque!( "b" );
let _got : DequeList< &str > = the_module::exposed::deque!( "b" );
let _got = the_module::deque!( "b" );
let _got = the_module::exposed::deque!( "b" );

}

Expand Down
4 changes: 3 additions & 1 deletion module/core/collection_tools/tests/inc/vec.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
use super::*;

#[ test ]
#[ cfg( any( not( feature = "no_std" ), feature = "use_alloc" ) ) ]
fn reexport()
{

Expand All @@ -12,7 +13,8 @@ fn reexport()
let got = vec1.last().unwrap().clone();
assert_eq!( got, 2 );

let mut vec2 : the_module::DynList< i32 > = the_module::DynList::new();
use std::vec::Vec as DynList;
let mut vec2 : DynList< i32 > = DynList::new();
vec2.push( 1 );
vec2.push( 2 );
let got = vec2.first().unwrap().clone();
Expand Down
2 changes: 1 addition & 1 deletion module/core/data_type/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "data_type"
version = "0.9.0"
version = "0.10.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/derive_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "derive_tools"
version = "0.27.0"
version = "0.28.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/derive_tools_meta/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "derive_tools_meta"
version = "0.26.0"
version = "0.27.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion module/core/error_tools/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "error_tools"
version = "0.16.0"
version = "0.17.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <[email protected]>",
Expand Down
Loading
Loading