Skip to content
This repository was archived by the owner on Sep 12, 2018. It is now read-only.

Commit 7349e51

Browse files
author
Olivier Gambier
committed
Bump to 0.9.1
1 parent 7d650d4 commit 7349e51

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# Docker-registry
22

3+
## 0.9.1
4+
5+
* fixed database initialization issues
6+
* move away from rsa to m2crypto
7+
* s3 enhancements and bug fixes
8+
* enforce additional checks on image ids
9+
310
## 0.9.0
411

512
* "loose" dependencies mechanism (DEPS=loose environment var will let you install without strictly versioned dependencies)

README.md

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ As the documentation evolves with different registry versions, be sure that befo
1313
* check which version of the registry you are running
1414
* switch to the corresponding tag to access the README that matches your product version
1515

16-
The stable, released version is the [0.9.0 tag](https://github.com/docker/docker-registry/tree/0.9.0).
16+
The stable, released version is the [0.9.1 tag](https://github.com/docker/docker-registry/tree/0.9.0).
1717

1818
Please also have a quick look at the [FAQ](FAQ.md) before reporting bugs.
1919

@@ -224,11 +224,7 @@ common:
224224
On initialization, the `SQLAlchemyIndex` class checks the database
225225
version. If the database doesn't exist yet (or does exist, but lacks
226226
a `version` table), the `SQLAlchemyIndex` creates the database and
227-
required tables. To avoid several Gunicorn workers racing to create
228-
the database, you should launch your registry with
229-
[--preload][gunicorn-preload]. For example:
230-
231-
$ docker run -e GUNICORN_OPTS=[--preload] -p 5000:5000 registry
227+
required tables.
232228

233229
## Mirroring Options
234230

@@ -369,5 +365,4 @@ Read [contributing](CONTRIBUTING.md)
369365
[search-endpoint]: http://docs.docker.com/reference/api/docker-io_api/#search
370366
[SQLAlchemy]: http://docs.sqlalchemy.org/
371367
[create_engine]: http://docs.sqlalchemy.org/en/latest/core/engines.html#sqlalchemy.create_engine
372-
[gunicorn-preload]: http://gunicorn-docs.readthedocs.org/en/latest/settings.html#preload-app
373368

docker_registry/server/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__credits__ = []
66

77
__license__ = 'Apache 2.0'
8-
__version__ = '0.9.0'
8+
__version__ = '0.9.1'
99
__maintainer__ = __author__
1010
__email__ = '[email protected]'
1111
__status__ = 'Production'

0 commit comments

Comments
 (0)