Skip to content

Commit

Permalink
release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuadavidthomas committed May 12, 2023
1 parent b27d3c9 commit 6febe0e
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
# Changelog

All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project attempts to adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]


## [0.1.0] - 2023-05-12

Initial release!

### Added

- A function that reads the environment and returns a `DATABASES` setting for a multi-region Fly Postgres database
- A router that routes reads to a replica database if the `DATABASES` setting has a `replica` key
- A middleware that sets the `Fly-Server` header containing the Fly server and region that served the request
- Initial documentation (README.md)
- Initial tests
- Initial CI/CD (GitHub Actions)

[unreleased]: https://github.com/joshuadavidthomas/django-flyio/compare/v0.1.0...HEAD
[0.1.0]: https://github.com/joshuadavidthomas/django-flyio/releases/tag/v0.1.0
2 changes: 1 addition & 1 deletion src/django_flyio/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from __future__ import annotations

__version__ = "0.0.1"
__version__ = "0.1.0"

0 comments on commit 6febe0e

Please sign in to comment.