Skip to content

Commit

Permalink
chore(release): 2.2.1 [skip ci]
Browse files Browse the repository at this point in the history
## [2.2.1](v2.2.0...v2.2.1) (2024-06-05)

### Bug Fixes

* naming fix to Transport ([fd17d3d](fd17d3d))
  • Loading branch information
semantic-release-bot committed Jun 5, 2024
1 parent fd17d3d commit 6bcada3
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 9 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [2.2.1](https://github.com/ocni-dtu/lcax/compare/v2.2.0...v2.2.1) (2024-06-05)

### Bug Fixes

* naming fix to Transport ([fd17d3d](https://github.com/ocni-dtu/lcax/commit/fd17d3daf852f3e073bb327528a5f473e630f673))

## [2.2.0](https://github.com/ocni-dtu/lcax/compare/v2.1.2...v2.2.0) (2024-06-05)

### Features
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ resolver = "2"

[workspace.package]
description = "LCAx is an open, machine and human-readable data format for exchanging LCA results."
version = "2.2.0"
version = "2.2.1"
authors = ["Christian Kongsgaard <christian@kongsgaard.eu>"]
edition = "2021"
readme = "README.md"
Expand Down
8 changes: 4 additions & 4 deletions packages/python/src/lcax/pydantic.py
Original file line number Diff line number Diff line change
Expand Up @@ -623,11 +623,11 @@ class Transport(BaseModel):
distance: float
distance_unit: Unit = Field(..., alias='distanceUnit')
id: str
impact_categories: List[ImpactCategoryKey] = Field(..., alias='impactCategories')
name: str
transport_epd: Union[ImpactDataSource1, ImpactDataSource2, ImpactDataSource3] = (
Field(..., alias='transportEpd')
impact_data: Union[ImpactDataSource1, ImpactDataSource2, ImpactDataSource3] = Field(
..., alias='impactData'
)
life_cycle_stages: List[LifeCycleStage] = Field(..., alias='lifeCycleStages')
name: str


class Product(BaseModel):
Expand Down

0 comments on commit 6bcada3

Please sign in to comment.