File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1- name : Linux CI
1+ name : Code Coverage
22
33on :
44 push :
5- branches : ' development'
65 tags :
76 - ' v[0-9]+.[0-9]+.[0-9]+'
87 - ' v[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
Original file line number Diff line number Diff line change @@ -2,9 +2,9 @@ name: Continuous Integration
22
33on :
44 push :
5- branches : ' * '
5+ branches : ['main', 'development']
66 pull_request :
7- branches : ' * '
7+ branches : ['main', 'development']
88
99env :
1010 CARGO_TERM_COLOR : always
4949 if : ${{ matrix.os == 'ubuntu-latest' }}
5050 run : cargo test --verbose --workspace --all-features --no-fail-fast -- --show-output --test-threads=1
5151
52- - name : Run UNIT tests with no external connections for the rest of the defined targets
52+ - name : Run only UNIT tests for the rest of the defined targets
53+ if : ${{ matrix.os != 'ubuntu-latest' }}
5354 run : cargo test --verbose --workspace --exclude tests --all-features --no-fail-fast -- --show-output
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -21,30 +21,10 @@ jobs:
2121 toolchain : stable
2222 override : true
2323
24- - uses : katyo/publish-crates@v1
24+ - uses : katyo/publish-crates@v2
2525 with :
2626 registry-token : ${{ secrets.CRATES_IO_TOKEN }}
27- path : ' ./canyon_connection'
28-
29- - uses : katyo/publish-crates@v1
30- with :
31- registry-token : ${{ secrets.CRATES_IO_TOKEN }}
32- path : ' ./canyon_crud'
33-
34- - uses : katyo/publish-crates@v1
35- with :
36- registry-token : ${{ secrets.CRATES_IO_TOKEN }}
37- path : ' ./canyon_observer'
38-
39- - uses : katyo/publish-crates@v1
40- with :
41- registry-token : ${{ secrets.CRATES_IO_TOKEN }}
42- path : ' ./canyon_macros'
43-
44- - uses : katyo/publish-crates@v1
45- with :
46- registry-token : ${{ secrets.CRATES_IO_TOKEN }}
47- path : ' ./canyon_sql'
27+ publish-delay : 15000
4828
4929 release-publisher :
5030 needs : ' publish'
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -9,6 +9,12 @@ Year format is defined as: `YYYY-m-d`
99
1010## [ Unreleased]
1111
12+ ## [ 0.1.1] - 2023 - 03 - 20
13+
14+ ### Fix
15+
16+ - Adding more types to the supported ones for Tiberius in the row mapper
17+
1218## [ 0.1.0] - 2022 - 12 - 25
1319
1420### Added
Original file line number Diff line number Diff line change 33** A full written in ` Rust ` ORM for multiple databases.**
44
55- ![ crates.io] ( https://img.shields.io/crates/v/canyon_sql.svg )
6+ - [ ![ Continuous Integration] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/continuous-integration.yml/badge.svg )] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/continuous-integration.yml )
7+ - [ ![ Code Quality] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/code-quality.yml/badge.svg )] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/code-quality.yml )
68- [ ![ Code Coverage Measure] ( https://zerodaycode.github.io/Canyon-SQL/badges/flat.svg )] ( https://zerodaycode.github.io/Canyon-SQL )
7- - [ ![ Linux CI] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/code-coverage.yml/badge.svg )] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/code-coverage.yml )
8- - [ ![ Tests on macOS] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/macos-tests.yml/badge.svg )] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/macos-tests.yml )
9- - [ ![ Tests on Windows] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/windows-tests.yml/badge.svg )] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/windows-tests.yml )
9+ - [ ![ Code Coverage Status] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/code-coverage.yml/badge.svg )] ( https://github.com/zerodaycode/Canyon-SQL/actions/workflows/code-coverage.yml )
1010
1111` Canyon-SQL ` is a high level abstraction for working with multiple databases concurrently. Is build on top of the ` async ` language features
1212to provide a high speed, high performant library to handling data access for consumers.
Original file line number Diff line number Diff line change 11[package ]
22name = " canyon_connection"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44edition = " 2021"
55documentation = " https://zerodaycode.github.io/canyon-book/"
66homepage = " https://github.com/zerodaycode/Canyon-SQL"
Original file line number Diff line number Diff line change 11[package ]
22name = " canyon_crud"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44edition = " 2021"
55documentation = " https://zerodaycode.github.io/canyon-book/"
66homepage = " https://github.com/zerodaycode/Canyon-SQL"
@@ -12,4 +12,4 @@ description = "A Rust ORM and QueryBuilder"
1212chrono = { version = " 0.4" , features = [" serde" ] }
1313async-trait = { version = " 0.1.50" }
1414
15- canyon_connection = { version = " 0.1.0 " , path = " ../canyon_connection" }
15+ canyon_connection = { version = " 0.1.1 " , path = " ../canyon_connection" }
Original file line number Diff line number Diff line change 11[package ]
22name = " canyon_macros"
3- version = " 0.1.0 "
3+ version = " 0.1.1 "
44edition = " 2021"
55documentation = " https://zerodaycode.github.io/canyon-book/"
66homepage = " https://github.com/zerodaycode/Canyon-SQL"
@@ -18,6 +18,6 @@ proc-macro2 = "1.0.27"
1818futures = " 0.3.21"
1919tokio = { version = " 1.9.0" , features = [" full" ] }
2020
21- canyon_observer = { version = " 0.1.0 " , path = " ../canyon_observer" }
22- canyon_crud = { version = " 0.1.0 " , path = " ../canyon_crud" }
23- canyon_connection = { version = " 0.1.0 " , path = " ../canyon_connection" }
21+ canyon_observer = { version = " 0.1.1 " , path = " ../canyon_observer" }
22+ canyon_crud = { version = " 0.1.1 " , path = " ../canyon_crud" }
23+ canyon_connection = { version = " 0.1.1 " , path = " ../canyon_connection" }
You can’t perform that action at this time.
0 commit comments