Releases
Zipline is currently being maintained by me (@diced) and only me. New releases can come out frequently or take a while depending on my schedule. If a new minor/patch release (4.x.x) is not out, you can build from source or use the trunk
tag on docker for the latest commit version.
latest
Updated every once in a while, the most frequent updates will be under 4.x.[number]
where [number]
increments. These may come out every few weeks or so. This is the most stable version of Zipline and is recommended for production use.
If you are using docker, just pull the latest image:
docker pull ghcr.io/diced/zipline:latest
If you are building from source, first switch to the latest tag, for example if the latest tag is 4.0.0
, run:
git checkout v4.0.0
Then follow the update steps
trunk
Update every time a commit is pushed to the trunk
branch. This is the least stable version of Zipline and is not recommended for production use, but is useful if a bug is fixed in the latest commit and you want to use it right away without waiting for the next release.
If you are using docker, just pull the latest image:
docker pull ghcr.io/diced/zipline:trunk
Then switch to the trunk
tag in your docker-compose file:
image: ghcr.io/diced/zipline:trunk
If you are building from source, first switch to the trunk
branch:
git checkout trunk
Then follow the update steps