Skip to content

Commit 7ce504b

Browse files
authored
Merge branch 'main' into chore/update-catalyst-ci-to-v3.6.1
2 parents 04774ea + fe42df6 commit 7ce504b

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

.config/dictionaries/project.dic

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@ dockerhub
7979
docstrings
8080
doctests
8181
Dominik
82+
dorny
8283
dotenv
8384
dotenvy
8485
dotglob

.github/workflows/ci.yml

Lines changed: 30 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,39 @@ permissions:
1616
pull-requests: write
1717

1818
jobs:
19+
paths-filter:
20+
runs-on: ubuntu-latest
21+
outputs:
22+
docs: ${{ steps.filter.outputs.docs }}
23+
not-only-docs: ${{ steps.filter.outputs.not-only-docs }}
24+
steps:
25+
- uses: actions/checkout@v5
26+
- uses: dorny/paths-filter@v3
27+
id: filter
28+
with:
29+
filters: |
30+
docs:
31+
- 'docs/**'
32+
- '.config/dictionaries/project.dic'
33+
not-only-docs:
34+
- '!((docs/**)|.config/dictionaries/project.dic)'
35+
36+
docs-only:
37+
if: ${{ needs.paths-filter.outputs.docs == 'true' && needs.paths-filter.outputs.not-only-docs != 'true' }}
38+
needs: [paths-filter]
39+
uses: input-output-hk/catalyst-forge/.github/workflows/release.yml@ci/v1.10.0
40+
with:
41+
releases: '[{"project":"./docs","name":"docs"}]'
42+
forge_version: 0.21.0
43+
1944
ci:
20-
if: ${{ !github.event.pull_request.draft }}
21-
uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.9.0
45+
if: ${{ !github.event.pull_request.draft && needs.paths-filter.outputs.not-only-docs == 'true'}}
46+
needs: [paths-filter]
47+
uses: input-output-hk/catalyst-forge/.github/workflows/ci.yml@ci/v1.10.0
2248
with:
23-
forge_version: 0.20.0
49+
forge_version: 0.21.0
2450

2551
test_reporting:
2652
if: ${{ !github.event.pull_request.draft }}
27-
needs: ci
53+
needs: [ci]
2854
uses: ./.github/workflows/generate-allure-report.yml

rust/cardano-blockchain-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "cardano-blockchain-types"
33
description = "Common Cardano Blockchain data types for use in both applications and crates"
44
keywords = ["cardano", "catalyst", ]
5-
version = "0.0.8"
5+
version = "0.0.9"
66
authors = [
77
"Steven Johnson <[email protected]>"
88
]

rust/cardano-blockchain-types/src/cip134_uri.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ use pallas_addresses::Address;
1313
/// See the [proposal] for more details.
1414
///
1515
/// [proposal]: https://github.com/cardano-foundation/CIPs/pull/888
16-
#[derive(Debug, Clone, Eq, PartialEq)]
16+
#[derive(Debug, Clone, Eq, PartialEq, Hash)]
1717
#[allow(clippy::module_name_repetitions)]
1818
pub struct Cip0134Uri {
1919
/// A URI string.

0 commit comments

Comments
 (0)