Skip to content

Commit f587eb3

Browse files
committed
0.3.0
1 parent 6d6759c commit f587eb3

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# 变更日志
22

3+
## 0.3.0 / 2019-3-2
4+
5+
- 增加.d.ts文件,支持ts调用
6+
37
## 0.2.0 / 2019-3-2
48

59
- `stringify`新增`filter``convert`参数

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
[![](https://img.shields.io/badge/Powered%20by-jslib%20querystring-brightgreen.svg)](https://github.com/yanhaijing/jslib-querystring)
44
[![license](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/jsmini/querystring/blob/master/LICENSE)
55
[![Build Status](https://travis-ci.org/jsmini/querystring.svg?branch=master)](https://travis-ci.org/jsmini/querystring)
6-
[![npm](https://img.shields.io/badge/npm-0.2.0-orange.svg)](https://www.npmjs.com/package/@jsmini/querystring)
6+
[![npm](https://img.shields.io/badge/npm-0.3.0-orange.svg)](https://www.npmjs.com/package/@jsmini/querystring)
77
[![NPM downloads](http://img.shields.io/npm/dm/@jsmini/querystring.svg?style=flat-square)](http://www.npmtrends.com/@jsmini/querystring)
88
[![Percentage of issues still open](http://isitmaintained.com/badge/open/jsmini/querystring.svg)](http://isitmaintained.com/project/jsmini/querystring "Percentage of issues still open")
99

index.d.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
export as namespace jsminiQuerystring;
2+
3+
export function parse(str: string, option?: object): object;
4+
export function stringify(obj: object, option?: object): string;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jsmini/querystring",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "最好用的js第三方库脚手架",
55
"main": "dist/index.js",
66
"jsnext:main": "dist/index.esm.js",

0 commit comments

Comments
 (0)