Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release for acapy-agent v1.2.0 #1374

Merged
merged 6 commits into from
Jan 8, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/create-release-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
# Install poetry
#----------------------------------------------
- name: Install poetry
run: pipx install poetry
run: pipx install poetry==1.8.3
id: setup-poetry
#----------------------------------------------
# Get the latest version of acapy-agent from pypi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-linting-and-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# Install python and poetry with cache
#----------------------------------------------
- name: Install poetry
run: pipx install poetry
run: pipx install poetry==1.8.3
id: setup-poetry
- uses: actions/setup-python@v5
with:
Expand Down
24 changes: 24 additions & 0 deletions RELEASES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,28 @@
# Plugin Release Status
## ACA-Py Release 1.2.0

| Plugin Name | Supported ACA-Py Release |
| --- | --- |
|basicmessage_storage | 1.2.0|
|cheqd | 1.2.0|
|connection_update | 1.2.0|
|firebase_push_notifications | 1.2.0|
|kafka_events | 0.12.3|
|multitenant_provider | 1.2.0|
|oid4vc | 1.2.0|
|redis_events | 1.2.0|
|rpc | 1.2.0|

### Plugins Upgraded For ACA-Py Release 1.2.0
- basicmessage_storage
- cheqd
- connection_update
- firebase_push_notifications
- multitenant_provider
- oid4vc
- redis_events
- rpc

## ACA-Py Release 1.1.1

| Plugin Name | Supported ACA-Py Release |
Expand Down
174 changes: 87 additions & 87 deletions basicmessage_storage/poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions basicmessage_storage/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tool.poetry]
name = "basicmessage_storage"
version = "0.1.0"
description = " (Supported acapy-agent version: 1.1.0) "
description = " (Supported acapy-agent version: 1.2.0) "
authors = ["Jason Sherman <[email protected]>"]

[tool.poetry.dependencies]
python = "^3.12"

# Define ACA-Py as an optional/extra dependency so it can be
# explicitly installed with the plugin if desired.
acapy-agent = { version = "~1.1.1", optional = true }
acapy-agent = { version = "~1.2.0", optional = true }

mergedeep = "^1.3.4"

Expand Down
92 changes: 44 additions & 48 deletions cheqd/poetry.lock

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

5 changes: 2 additions & 3 deletions cheqd/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[tool.poetry]
name = "cheqd"
version = "0.1.0"
description = ""
description = " (Supported acapy-agent version: 1.2.0) "
authors = []

[tool.poetry.dependencies]
python = "^3.12"

# Define ACA-Py as an optional/extra dependency so it can be
# explicitly installed with the plugin if desired.
acapy-agent = { version = "~1.1.1", optional = true }
acapy-agent = { version = "~1.2.0", optional = true }

cryptography = "<38.0.0"
# Define ACA-Py as an optional/extra dependancy so it can be
Expand Down Expand Up @@ -91,4 +91,3 @@ output = ".test-reports/coverage.xml"
[build-system]
requires = ["setuptools", "poetry-core>=1.2"]
build-backend = "poetry.core.masonry.api"

Loading
Loading