Skip to content

Commit

Permalink
Merge branch 'main' into renovate/starbase
Browse files Browse the repository at this point in the history
  • Loading branch information
lengau authored Aug 14, 2024
2 parents 59b6f4f + 7ea8655 commit 4852ae3
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 1.34.0
current_version = 2.0.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion craft_parts/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

"""Craft a project from several parts."""

__version__ = "1.34.0"
__version__ = "2.0.0"

from . import plugins
from .actions import Action, ActionProperties, ActionType
Expand Down
20 changes: 20 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@
Changelog
*********

2.0.0 (2024-08-08)
------------------

Breaking changes:

- Set minimum Python version to 3.10
- Plugin models are restructured
- Migrate to Pydantic 2
- API uses Debian architecture names rather than Python platform names

New features:

- Plugin models can use Pydantic JSON schema export
- Partition names can include hyphens

Bug fixes:

- Xattrs raise FileNotFoundError when appropriate
- Partition names are more strictly checked.

1.34.0 (2024-08-01)
-------------------
- Allow numbers in partitions, partition namespaces, and namespaced partitions.
Expand Down
1 change: 1 addition & 0 deletions docs/common/craft-parts/craft-parts.wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ ExecutionContext
FeatureError
FieldInfo
FileCache
FileNotFoundError
FileOrganizeError
FileProviderNotFound
FileSource
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

from setuptools import find_packages, setup

VERSION = "1.34.0"
VERSION = "2.0.0"

with open("README.md") as readme_file:
readme = readme_file.read()
Expand Down

0 comments on commit 4852ae3

Please sign in to comment.