Skip to content

Commit 4f202cd

Browse files
committed
Bumped version to 0.3.0
1 parent da01dd3 commit 4f202cd

3 files changed

Lines changed: 26 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## 0.3.0 (2013-05-06)
4+
+ Registry: Implement the new registry
5+
+ Documentation: new example: sharing data between 2 couchdb databases
6+
- Runtime: Fix the command existance check
7+
- Runtime: strings.Split may return an empty string on no match
8+
- Runtime: Fix an index out of range crash if cgroup memory is not
9+
* Documentation: Various improvments
10+
* Vagrant: Use only one deb line in /etc/apt
11+
312
## 0.2.2 (2013-05-03)
413
+ Support for data volumes ('docker run -v=PATH')
514
+ Share data volumes between containers ('docker run -volumes-from')
@@ -8,7 +17,7 @@
817
* Various upgrades to the dev environment for contributors
918

1019
## 0.2.1 (2013-05-01)
11-
+ 'docker commit -run' bundles a layer with default runtime options: command, ports etc.
20+
+ 'docker commit -run' bundles a layer with default runtime options: command, ports etc.
1221
* Improve install process on Vagrant
1322
+ New Dockerfile operation: "maintainer"
1423
+ New Dockerfile operation: "expose"
@@ -25,13 +34,12 @@
2534
+ Add a changelog
2635
- Various bugfixes
2736

28-
2937
## 0.1.8 (2013-04-22)
3038
- Dynamically detect cgroup capabilities
3139
- Issue stability warning on kernels <3.8
3240
- 'docker push' buffers on disk instead of memory
3341
- Fix 'docker diff' for removed files
34-
- Fix 'docker stop' for ghost containers
42+
- Fix 'docker stop' for ghost containers
3543
- Fix handling of pidfile
3644
- Various bugfixes and stability improvements
3745

@@ -52,7 +60,7 @@
5260
- Improve diagnosis of missing system capabilities
5361
- Allow disabling memory limits at compile time
5462
- Add debian packaging
55-
- Documentation: installing on Arch Linux
63+
- Documentation: installing on Arch Linux
5664
- Documentation: running Redis on docker
5765
- Fixed lxc 0.9 compatibility
5866
- Automatically load aufs module

commands.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919
"unicode"
2020
)
2121

22-
const VERSION = "0.2.2"
22+
const VERSION = "0.3.0"
2323

2424
var (
2525
GIT_COMMIT string

packaging/ubuntu/changelog

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
lxc-docker (0.3.0-1) precise; urgency=low
2+
- Registry: Implement the new registry
3+
- Documentation: new example: sharing data between 2 couchdb databases
4+
- Runtime: Fix the command existance check
5+
- Runtime: strings.Split may return an empty string on no match
6+
- Runtime: Fix an index out of range crash if cgroup memory is not
7+
- Documentation: Various improvments
8+
- Vagrant: Use only one deb line in /etc/apt
9+
10+
-- dotCloud <[email protected]> Fri, 5 May 2013 00:00:00 -0700
11+
12+
113
lxc-docker (0.2.2-1) precise; urgency=low
214
- Support for data volumes ('docker run -v=PATH')
315
- Share data volumes between containers ('docker run -volumes-from')
@@ -10,7 +22,7 @@ lxc-docker (0.2.2-1) precise; urgency=low
1022

1123
lxc-docker (0.2.1-1) precise; urgency=low
1224

13-
- 'docker commit -run' bundles a layer with default runtime options: command, ports etc.
25+
- 'docker commit -run' bundles a layer with default runtime options: command, ports etc.
1426
- Improve install process on Vagrant
1527
- New Dockerfile operation: "maintainer"
1628
- New Dockerfile operation: "expose"

0 commit comments

Comments
 (0)