Skip to content

Commit

Permalink
release 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
0x8890 committed Aug 15, 2015
1 parent 341464c commit 98f6181
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,9 @@ Fortune is a high-level I/O library for web applications.
[View the website](http://fortunejs.com) for documentation. Get it from `npm`:

```sh
$ npm install fortune@latest --save
$ npm install fortune --save
```

Currently in *release candidate* stage. Things may break, check the [changelog](http://fortunejs.com/changelog/).


## Example

Expand Down
4 changes: 4 additions & 0 deletions doc/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Changelog


##### 1.0.0 (2015-08-15)
- Initial release of major version.


##### 1.0.0-rc.14 (2015-08-15)
- Implemented memory adapter, which replaces NeDB as the default adapter.
- Breaking change: removed NeDB adapter, now belongs to a separate module: `fortune-nedb`.
Expand Down
2 changes: 1 addition & 1 deletion doc/PLUGINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Serializers process data, they must subclass and implement the Serializer class.
| Serializer | Description |
|:-----------------|:---------------------------------------------------------|
| Default (included, default) | Standard serializer for programmatic use. |
| Ad-hoc JSON-over-HTTP (included, default) | A thin mapping of Fortune over HTTP. |
| Ad-hoc HTTP (included, default) | A thin mapping of Fortune over HTTP. |
| [Micro API](https://github.com/fortunejs/fortune-micro-api) [[spec](http://micro-api.org)] | A minimal serialization format for hypermedia APIs. |
| [JSON API](https://github.com/fortunejs/fortune-json-api) [[spec](http://jsonapi.org)] | JSON API 1.0 compatible, useful for clients such as [Ember Data](https://github.com/emberjs/data). |

Expand Down
2 changes: 0 additions & 2 deletions doc/TODO.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
# To-do list

*This file is marked for deletion after 1.0.*

- Consider using ES7 features (?)
- 100% test coverage.

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fortune",
"description": "High-level I/O library for web applications.",
"version": "1.0.0-rc.14",
"version": "1.0.0",
"license": "MIT",
"author": {
"email": "[email protected]",
Expand Down
2 changes: 1 addition & 1 deletion website/templates/home.mustache
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<p>Fortune.js is a high-level I/O library for web applications, in the server and the browser. It provides abstractions for working with data. The latest version is <strong>{{version}}</strong>, get it from <code>npm</code>:</p>
<pre class="install"><code>npm install fortune<span class="hljs-literal">@latest</span> <span class="hljs-string">--save</span></code></pre>
<pre class="install"><code>npm install <span class="hljs-literal">fortune</span> <span class="hljs-string">--save</span></code></pre>
<h4>Example</h4>

3 comments on commit 98f6181

@nickschot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Congratulations!

@gr0uch
Copy link
Member

@gr0uch gr0uch commented on 98f6181 Aug 15, 2015

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🎉

@wprater
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

👍 yay!

Please sign in to comment.