Skip to content

Commit 283c8c8

Browse files
author
Alexandr Sorokin
committed
Release 1.7.2
1 parent 7ca48a8 commit 283c8c8

File tree

5 files changed

+16
-8
lines changed

5 files changed

+16
-8
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44

55
The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/).
66

7+
## [1.7.2]
8+
9+
### Fixed
10+
11+
* [Unit] Dylib search is now done by package name
12+
Mandatory requirement cdylib
13+
Now, for the unit testing system to work correctly, it is mandatory to specify crate-type=["cdylib"] in the [lib] section of the Cargo.toml file
14+
715

816
## [1.7.1]
917

Cargo.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

picotest/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "picotest"
3-
version = "1.7.1"
3+
version = "1.7.2"
44
edition = "2021"
55
license = "BSD-2-Clause"
66
description = "Test framework for Picodata plugin"
@@ -19,8 +19,8 @@ authors = [
1919

2020

2121
[dependencies]
22-
picotest_macros = { path = "../picotest_macros", version = "1.7.1" }
23-
picotest_helpers = { path = "../picotest_helpers", version = "1.7.1" }
22+
picotest_macros = { path = "../picotest_macros", version = "1.7.2" }
23+
picotest_helpers = { path = "../picotest_helpers", version = "1.7.2" }
2424
anyhow.workspace = true
2525
ctor = "0.4.2"
2626
rstest.workspace = true

picotest_helpers/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "picotest_helpers"
3-
version = "1.7.1"
3+
version = "1.7.2"
44
edition = "2021"
55
license = "BSD-2-Clause"
66
description = "Test framework for Picodata plugin"

picotest_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "picotest_macros"
3-
version = "1.7.1"
3+
version = "1.7.2"
44
edition = "2021"
55
license = "BSD-2-Clause"
66
description = "Test framework for Picodata plugin"

0 commit comments

Comments
 (0)