Skip to content

Commit

Permalink
Prepare beta.3 with a browser hotfix (#862)
Browse files Browse the repository at this point in the history
  • Loading branch information
Shaptic committed Sep 19, 2023
1 parent 8df8275 commit 2e68999
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ A breaking change will get clearly marked in this log.
## Unreleased


## [v11.0.0-beta.3](https://github.com/stellar/js-stellar-sdk/compare/v11.0.0-beta.2...v11.0.0-beta.3)

### Fixed
- Fix a webpack error preventing correct exports of the SDK for browsers ([TODO]()).


## [v11.0.0-beta.2](https://github.com/stellar/js-stellar-sdk/compare/v11.0.0-beta.1...v11.0.0-beta.2)

### Breaking Changes
Expand Down
7 changes: 5 additions & 2 deletions config/webpack.config.browser.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ const config = {
},
output: {
clean: true,
library: 'StellarSdk',
compareBeforeEmit: true,
library: {
name: 'StellarSdk',
type: 'umd',
umdNamedDefine: true
},
path: path.resolve(__dirname, '../dist')
},
mode: process.env.NODE_ENV ?? 'development',
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "stellar-sdk",
"version": "11.0.0-beta.2",
"version": "11.0.0-beta.3",
"description": "A library for working with the Stellar Horizon server.",
"keywords": [
"stellar"
Expand Down

0 comments on commit 2e68999

Please sign in to comment.