Skip to content

Commit

Permalink
📌(checkpoint,draft,release,publish): update patch version
Browse files Browse the repository at this point in the history
Signed-off-by: rjdbcm <[email protected]>
  • Loading branch information
rjdbcm committed Jun 21, 2024
1 parent 7b7dff0 commit 2fa3193
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ozi/spec/ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,29 +17,29 @@ class Publish(Default):
"""Publishing patterns for packaged project."""

include: tuple[str, ...] = ('*.tar.gz', '*.whl', 'sig/*')
version: str = '0.1.5'
version: str = '0.1.6'


@dataclass(slots=True, frozen=True, eq=True)
class Draft(Default):
"""Draft release patterns for packaged project."""

version: str = '0.3.1'
version: str = '0.3.3'


@dataclass(slots=True, frozen=True, eq=True)
class Release(Default):
"""Release patterns for packaged project."""

version: str = '0.6.4'
version: str = '0.6.5'


@dataclass(slots=True, frozen=True, eq=True)
class Checkpoint(Default):
"""Checkpoint suites to run."""

suites: tuple[str, ...] = ('dist', 'lint', 'test')
version: str = '0.4.0'
version: str = '0.4.2'


@dataclass(slots=True, frozen=True, eq=True)
Expand Down

0 comments on commit 2fa3193

Please sign in to comment.