Skip to content

Commit 3799862

Browse files
committed
release: v3.6.1
1 parent b942a02 commit 3799862

9 files changed

+31
-25
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [3.6.1](https://github.com/vuejs/vuex/compare/v3.6.0...v3.6.1) (2021-01-26)
2+
3+
### Bug Fixes
4+
5+
* fix tree shaking notworking in webpack bundle ([#1906](https://github.com/vuejs/vuex/issues/1906)) ([1dc2d1f](https://github.com/vuejs/vuex/commit/1dc2d1f21de42138053ea3281dde05487642a76d))
6+
17
# [3.6.0](https://github.com/vuejs/vuex/compare/v3.5.1...v3.6.0) (2020-11-25)
28

39
### Bug Fixes

dist/logger.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vuex v3.6.0
3-
* (c) 2020 Evan You
2+
* vuex v3.6.1
3+
* (c) 2021 Evan You
44
* @license MIT
55
*/
66
(function (global, factory) {

dist/vuex.common.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vuex v3.6.0
3-
* (c) 2020 Evan You
2+
* vuex v3.6.1
3+
* (c) 2021 Evan You
44
* @license MIT
55
*/
66
'use strict';
@@ -967,7 +967,7 @@ var mapState = normalizeNamespace(function (namespace, states) {
967967
/**
968968
* Reduce the code which written in Vue.js for committing the mutation
969969
* @param {String} [namespace] - Module's namespace
970-
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
970+
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
971971
* @return {Object}
972972
*/
973973
var mapMutations = normalizeNamespace(function (namespace, mutations) {
@@ -1232,7 +1232,7 @@ function pad (num, maxLength) {
12321232
var index_cjs = {
12331233
Store: Store,
12341234
install: install,
1235-
version: '3.6.0',
1235+
version: '3.6.1',
12361236
mapState: mapState,
12371237
mapMutations: mapMutations,
12381238
mapGetters: mapGetters,

dist/vuex.esm.browser.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vuex v3.6.0
3-
* (c) 2020 Evan You
2+
* vuex v3.6.1
3+
* (c) 2021 Evan You
44
* @license MIT
55
*/
66
function applyMixin (Vue) {
@@ -938,7 +938,7 @@ const mapState = normalizeNamespace((namespace, states) => {
938938
/**
939939
* Reduce the code which written in Vue.js for committing the mutation
940940
* @param {String} [namespace] - Module's namespace
941-
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
941+
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
942942
* @return {Object}
943943
*/
944944
const mapMutations = normalizeNamespace((namespace, mutations) => {
@@ -1187,7 +1187,7 @@ function pad (num, maxLength) {
11871187
var index = {
11881188
Store,
11891189
install,
1190-
version: '3.6.0',
1190+
version: '3.6.1',
11911191
mapState,
11921192
mapMutations,
11931193
mapGetters,

dist/vuex.esm.browser.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/vuex.esm.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vuex v3.6.0
3-
* (c) 2020 Evan You
2+
* vuex v3.6.1
3+
* (c) 2021 Evan You
44
* @license MIT
55
*/
66
function applyMixin (Vue) {
@@ -965,7 +965,7 @@ var mapState = normalizeNamespace(function (namespace, states) {
965965
/**
966966
* Reduce the code which written in Vue.js for committing the mutation
967967
* @param {String} [namespace] - Module's namespace
968-
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
968+
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
969969
* @return {Object}
970970
*/
971971
var mapMutations = normalizeNamespace(function (namespace, mutations) {
@@ -1230,7 +1230,7 @@ function pad (num, maxLength) {
12301230
var index = {
12311231
Store: Store,
12321232
install: install,
1233-
version: '3.6.0',
1233+
version: '3.6.1',
12341234
mapState: mapState,
12351235
mapMutations: mapMutations,
12361236
mapGetters: mapGetters,

dist/vuex.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
2-
* vuex v3.6.0
3-
* (c) 2020 Evan You
2+
* vuex v3.6.1
3+
* (c) 2021 Evan You
44
* @license MIT
55
*/
66
(function (global, factory) {
@@ -971,7 +971,7 @@
971971
/**
972972
* Reduce the code which written in Vue.js for committing the mutation
973973
* @param {String} [namespace] - Module's namespace
974-
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept anthor params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
974+
* @param {Object|Array} mutations # Object's item can be a function which accept `commit` function as the first param, it can accept another params. You can commit mutation and do any other things in this function. specially, You need to pass anthor params from the mapped function.
975975
* @return {Object}
976976
*/
977977
var mapMutations = normalizeNamespace(function (namespace, mutations) {
@@ -1236,7 +1236,7 @@
12361236
var index_cjs = {
12371237
Store: Store,
12381238
install: install,
1239-
version: '3.6.0',
1239+
version: '3.6.1',
12401240
mapState: mapState,
12411241
mapMutations: mapMutations,
12421242
mapGetters: mapGetters,

dist/vuex.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vuex",
3-
"version": "3.6.0",
3+
"version": "3.6.1",
44
"description": "state management for Vue.js",
55
"main": "dist/vuex.common.js",
66
"exports": {

0 commit comments

Comments
 (0)