Skip to content

Commit

Permalink
chore(release): v0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pi0 committed May 1, 2024
1 parent 2bb8ab3 commit 64b0ad3
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 2 deletions.
37 changes: 37 additions & 0 deletions CHANGELOG.md
@@ -1,6 +1,43 @@
# Changelog


## v0.2.0

[compare changes](https://github.com/unjs/undio/compare/v0.1.1...v0.2.0)

### 🚀 Enhancements

- Support converting from node readable stream ([#14](https://github.com/unjs/undio/pull/14))
- **base64:** ⚠️ Support `data:` url first ([e327558](https://github.com/unjs/undio/commit/e327558))

### 🩹 Fixes

- **base64:** Always use utf8 safe encoding and decoding ([8771f99](https://github.com/unjs/undio/commit/8771f99))

### 💅 Refactors

- ⚠️ Rename `String` type to `Text` ([764f03b](https://github.com/unjs/undio/commit/764f03b))

### 🏡 Chore

- Apply automated updates ([5d16ae3](https://github.com/unjs/undio/commit/5d16ae3))
- Apply biome lint ([271389e](https://github.com/unjs/undio/commit/271389e))
- Update readme ([f5264c6](https://github.com/unjs/undio/commit/f5264c6))
- Apply automated updates ([6e76c34](https://github.com/unjs/undio/commit/6e76c34))

### ✅ Tests

- Increase coverage ([3ca00cf](https://github.com/unjs/undio/commit/3ca00cf))

#### ⚠️ Breaking Changes

- **base64:** ⚠️ Support `data:` url first ([e327558](https://github.com/unjs/undio/commit/e327558))
- ⚠️ Rename `String` type to `Text` ([764f03b](https://github.com/unjs/undio/commit/764f03b))

### ❤️ Contributors

- Pooya Parsa ([@pi0](http://github.com/pi0))

## v0.1.1

[compare changes](https://github.com/unjs/undio/compare/v0.1.0...v0.1.1)
Expand Down
6 changes: 4 additions & 2 deletions package.json
@@ -1,6 +1,6 @@
{
"name": "undio",
"version": "0.1.1",
"version": "0.2.0",
"description": "",
"repository": "unjs/undio",
"license": "MIT",
Expand All @@ -16,7 +16,9 @@
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": ["dist"],
"files": [
"dist"
],
"scripts": {
"build": "pnpm gen-maps && unbuild",
"dev": "vitest dev",
Expand Down

0 comments on commit 64b0ad3

Please sign in to comment.