Skip to content

Commit bcc3dcc

Browse files
authored
Prepare 2.0.1 release. (#188)
Remove remaining references to prerelease status.
1 parent b2bd4b5 commit bcc3dcc

File tree

3 files changed

+18
-5
lines changed

3 files changed

+18
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
This is a major rewrite of the previously-existing [`sqlite_ecto`](https://github.com/jazzyb/sqlite_ecto) that adds support for Ecto 2.1+.
44

55

6+
## v2.0.1
7+
8+
_7 August 2017_
9+
10+
* Formally announce availability.
11+
* Fix a few README and CHANGELOG issues.
12+
13+
14+
## v2.0.0
15+
16+
_6 August 2017_
17+
18+
* Fix a few documentation errors.
19+
20+
621
## v2.0.0-dev.8
722

823
_11 June 2017_

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ Read [the tutorial](./docs/tutorial.md) for a detailed example of how to setup a
1414

1515
*(and when not to use it ...)*
1616

17-
**IMPORTANT!!!!** This is a preliminary, bleeding-edge release. It is believed to work with all 2.0.x and 2.1.x versions of Ecto, but it has not been subjected to any serious performance analysis or stress test. I recommend against deploying this into any sort of production environment at this time.
17+
If, for some reason, you still need to use Ecto 1.x, please look at [sqlite_ecto](https://github.com/jazzyb/sqlite_ecto), on which this project is based.
1818

19-
If you're able to use Ecto 1.x, please look at [sqlite_ecto](https://github.com/jazzyb/sqlite_ecto), on which this project is based.
20-
21-
Setting aside the prerelease nature of this library, I strongly recommend reading [Appropriate Uses for SQLite](https://sqlite.org/whentouse.html) on the SQLite page itself. All of the considerations mentioned there apply to this library as well.
19+
I strongly recommend reading [Appropriate Uses for SQLite](https://sqlite.org/whentouse.html) on the SQLite site itself. All of the considerations mentioned there apply to this library as well.
2220

2321
I will add one more: If there is *any* potential that more than one server node will need to write directly to the database at once (as often happens when using Elixir in a clustered environment), **do not use** `sqlite_ecto2`. Remember that there is no separate database process in this configuration, so each of your cluster nodes would be writing to its **own** copy of the database without any synchronization. You probably don't want that. Look for a true client/server database (Postgres, MySQL, or similar) in that case. SQLite's sweet spot is single-machine deployments (embedded, desktop, etc.).
2422

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ defmodule Sqlite.Ecto2.Mixfile do
33

44
def project do
55
[app: :sqlite_ecto2,
6-
version: "2.0.0",
6+
version: "2.0.1",
77
name: "Sqlite.Ecto2",
88
elixir: "~> 1.3.4 or ~> 1.4",
99
elixirc_options: [warnings_as_errors: true],

0 commit comments

Comments
 (0)