Skip to content
This repository has been archived by the owner on Feb 27, 2023. It is now read-only.

Commit

Permalink
Updated readme.
Browse files Browse the repository at this point in the history
  • Loading branch information
seijihirao committed Oct 29, 2016
1 parent d1c7c0f commit ba92c10
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# 0.5
Added json translation

Now received
```json
{
'var1[0]': 'value0',
'var1[1]': 'value1',
'var2[key1]': 'value2',
'var2[key2]': 'value3'
}
```
will be
```json
{
'var1': [
'value0',
'value1'
],
'var2': {
'key1': 'value2',
'key2': 'value3'
}
}
```

## 0.4.2
Tiny fixes

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# apys - v0.4
# apys - v0.5
Wellcome to apys! A simple backend restful framework!

## LANGUAGE
Expand Down

0 comments on commit ba92c10

Please sign in to comment.