Skip to content

Commit bb62265

Browse files
authored
Merge pull request #12 from k9withabone/compose_spec-v0.1.0
`compose_spec` v0.1.0
2 parents 583cba1 + f03ad42 commit bb62265

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+2006
-645
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
uses: actions/checkout@v4
9595

9696
- name: Typos
97-
uses: crate-ci/typos@v1.18.2
97+
uses: crate-ci/typos@v1.20.4
9898

9999
msrv:
100100
runs-on: ubuntu-latest

.github/workflows/release.yaml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Release
2+
3+
permissions:
4+
contents: write
5+
6+
on:
7+
push:
8+
tags:
9+
- 'v[0-9]+.[0-9]+.[0-9]+*'
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- name: Checkout
16+
uses: actions/checkout@v4
17+
18+
- name: Create Release
19+
uses: taiki-e/create-gh-release-action@v1
20+
with:
21+
changelog: CHANGELOG.md
22+
branch: main
23+
token: ${{ secrets.GITHUB_TOKEN }}

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7+
8+
## [0.1.0] - 2024-04-05
9+
10+
The initial release of `compose_spec`!
11+
12+
### Features
13+
14+
- (De)serialize from/to the structure of the Compose specification.
15+
- Values are fully validated and parsed.
16+
- Completely documented.
17+
- Conversion between short and long syntax forms of values.
18+
- Conversion between `std::time::Duration` and the duration string format from the compose-spec.

0 commit comments

Comments
 (0)