Skip to content
Closed
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
4 changes: 3 additions & 1 deletion .github/workflows/dapp-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ jobs:
- name: Extract tag
id: tag
run: |
TAG=${GITHUB_REF#refs/tags/dapp-v}
# Extract version from dapp/package.json using grep and sed
TAG=$(grep '"version"' dapp/package.json | sed 's/.*"version": "\([^"]*\)".*/\1/')
echo "clean_tag=${TAG}" >> $GITHUB_OUTPUT
echo "Extracted version from package.json: ${TAG}"

docker-publish:
uses: iExecBlockchainComputing/github-actions-workflows/.github/workflows/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
".": "0.1.0-alpha.1",
"dapp": "0.1.0-alpha.0"
"dapp": "0.1.0-alpha.1"
}
7 changes: 7 additions & 0 deletions dapp/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file.

## [0.1.0-alpha.1](https://github.com/iExecBlockchainComputing/web3telegram-sdk/compare/dapp-v0.1.0-alpha.0...dapp-v0.1.0-alpha.1) (2025-07-28)

### Changed

- add .js extensions to ES module imports ([#56](https://github.com/iExecBlockchainComputing/web3telegram-sdk/issues/56)) ([0a63891](https://github.com/iExecBlockchainComputing/web3telegram-sdk/commit/0a638918b08e7c2f9f62bf155609f267d39e3ba5))
- rollback debug logging changes from develop branch ([404ce33](https://github.com/iExecBlockchainComputing/web3telegram-sdk/commit/404ce33e7d0705c274155813951284cd1830a3d2))

Comment on lines +10 to +11
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
- rollback debug logging changes from develop branch ([404ce33](https://github.com/iExecBlockchainComputing/web3telegram-sdk/commit/404ce33e7d0705c274155813951284cd1830a3d2))

this change doesn't seem particularly valuable to include

## [0.0.2-alpha] - 2025-03-10

### Changed
Expand Down
4 changes: 2 additions & 2 deletions dapp/package-lock.json

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

2 changes: 1 addition & 1 deletion dapp/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dapp",
"version": "0.1.0-alpha.0",
"version": "0.1.0-alpha.1",
"main": "index.js",
"type": "module",
"engines": {
Expand Down
Loading