Skip to content

Commit

Permalink
release: 0.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
euaaaio committed Jul 8, 2023
1 parent 4d87b4b commit b8c4470
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 15 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
# Change Log
This project adheres to [Semantic Versioning](http://semver.org/).

## 0.10.0
* Refactored devtools part:
* Added better logging and tagging.
* Removed `attachStores` method.
* Extended `devtools` method.
* Dropped Node.js 16 support.
* Updated dependencies.

## 0.9.1
* Fixed broken devtools: removed support for `mapTemplate`.
* Updated dependencies.
Expand Down
16 changes: 2 additions & 14 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ Each model will be prefixed with `Model`. You can change it via `opts.prefix`.
## Devtools

<p align="center">
<img src="img/screenshot.jpg" alt="Nanostores Vue Devtools screenshot" width="830">
<img src="img/screenshot.jpg" alt="Nanostores Vue Devtools" width="830">
</p>

### Install
Expand Down Expand Up @@ -164,19 +164,7 @@ import { devtools, attachStores } from '@nanostores/vue/devtools'
import { User } from '../stores/user.js'
const app = createApp(…)
app.use(devtools)
attachStores(app, { User })
```
You can connect several stores in different places of your application
and set custom names to simplify the work with devtools.

```js
attachStores(app, {
'Current User': User,
Post
})
app.use(devtools, { User })
```
### Settings
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": "@nanostores/vue",
"version": "0.9.1",
"version": "0.10.0",
"description": "Vue integration for Nano Stores, a tiny state manager with many atomic tree-shakable stores",
"keywords": [
"store",
Expand Down

0 comments on commit b8c4470

Please sign in to comment.