Skip to content

Commit 25250b4

Browse files
committed
Release 1.0.0a3
1 parent e0ca677 commit 25250b4

File tree

9 files changed

+36
-5
lines changed

9 files changed

+36
-5
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
# Changelog
22

33
<!-- towncrier release notes start -->
4+
## 1.0.0a3 (2025-03-14)
5+
6+
### Backend
7+
8+
9+
#### Bug fixes:
10+
11+
- Fix declaration of namespace package (plonegovbr) @ericof
12+
13+
14+
15+
### Frontend
16+
17+
No significant changes.
18+
19+
420
## 1.0.0a2 (2025-03-10)
521

622
### Backend

backend/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
# Changelog
22

33
<!-- towncrier release notes start -->
4+
5+
## 1.0.0a3 (2025-03-14)
6+
7+
8+
### Bug fixes:
9+
10+
- Fix declaration of namespace package (plonegovbr) @ericof
11+
412
## 1.0.0a2 (2025-03-10)
513

614
No significant changes

backend/src/plonegovbr/__init__.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
__import__("pkg_resources").declare_namespace(__name__)
1+
from pkgutil import extend_path
2+
3+
4+
__path__ = extend_path(__path__, __name__)

backend/src/plonegovbr/brfields/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import logging
66

77

8-
__version__ = "1.0.0a2"
8+
__version__ = "1.0.0a3"
99

1010
PACKAGE_NAME = "plonegovbr.brfields"
1111

frontend/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
<!-- towncrier release notes start -->
44

5+
## 1.0.0-alpha.3 (2025-03-14)
6+
57
## 1.0.0-alpha.2 (2025-03-10)
68

79
### Internal

frontend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "volto-brwidgets-dev",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"description": "Packages implementing widgets used in Brazil for Volto projects",
55
"author": "PloneGov-BR",
66
"homepage": "https://github.com/plonegovbr/brfieldsandwidgets",

frontend/packages/volto-brwidgets/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
<!-- towncrier release notes start -->
44

5+
## 1.0.0-alpha.3 (2025-03-14)
6+
57
## 1.0.0-alpha.2 (2025-03-10)
68

79
### Internal

frontend/packages/volto-brwidgets/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@plonegovbr/volto-brwidgets",
3-
"version": "1.0.0-alpha.2",
3+
"version": "1.0.0-alpha.3",
44
"description": "Packages implementing widgets used in Brazil for Volto projects",
55
"main": "src/index.js",
66
"license": "MIT",

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0a2
1+
1.0.0a3

0 commit comments

Comments
 (0)