Bump version to 0.12.1, update `CHANGELOG.md` (#271)
This commit is contained in:
parent
db4e3ca202
commit
b3b060d625
16
CHANGELOG.md
16
CHANGELOG.md
|
@ -1,3 +1,19 @@
|
|||
# 0.12.1 (1 December 2021)
|
||||
|
||||
This is a bugfix release that fixes linking issues with ICU that some users could've experienced
|
||||
with `carton dev` and `carton bundle`. Many thanks to [@Sefford](https://github.com/Sefford) for
|
||||
reporting this and providing detailed issue description!
|
||||
|
||||
**Closed issues:**
|
||||
|
||||
- Carton 0.12.0 with SwiftWasm 5.5.0 fails with linker command ([#268](https://github.com/swiftwasm/carton/issues/268))
|
||||
|
||||
**Merged pull requests:**
|
||||
|
||||
- Bump SwiftWasm to 5.5 in `Dockerfile`, bump AHC ([#269](https://github.com/swiftwasm/carton/pull/269)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
|
||||
- Add ICU linker flags to all build invocation ([#270](https://github.com/swiftwasm/carton/pull/270)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
|
||||
- Update dependencies ([#261](https://github.com/swiftwasm/carton/pull/261)) via [@MaxDesiatov](https://github.com/MaxDesiatov)
|
||||
|
||||
# 0.12.0 (27 November 2021)
|
||||
|
||||
This release bumps the default version of SwiftWasm distribution to 5.5.0. For projects that don't
|
||||
|
|
|
@ -12,4 +12,4 @@
|
|||
// See the License for the specific language governing permissions and
|
||||
// limitations under the License.
|
||||
|
||||
public let cartonVersion = "0.12.0"
|
||||
public let cartonVersion = "0.12.1"
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "carton",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "carton",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"license": "Apache-2.0",
|
||||
"devDependencies": {
|
||||
"@wasmer/wasi": "^0.12.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "carton",
|
||||
"version": "0.12.0",
|
||||
"version": "0.12.1",
|
||||
"description": "📦 Watcher, bundler, and test runner for your SwiftWasm apps ",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
|
|
Loading…
Reference in New Issue