Skip to content

Commit

Permalink
Update changelog and revert version
Browse files Browse the repository at this point in the history
  • Loading branch information
tarsil committed Mar 24, 2023
1 parent a703d54 commit b271a54
Show file tree
Hide file tree
Showing 3 changed files with 72 additions and 7 deletions.
7 changes: 0 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,11 @@ 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/).

## 0.8.0 (Mar 21, 2022)

### Added

- Support for SQLAlchemy 2.0+
- Added internal support for the new psycopg dialect.

### Changed

- Removed support for python 3.7 in favour to 3.8.
- Python 3.7 support will end in June 2023

## 0.7.0 (Dec 18th, 2022)

### Fixed
Expand Down
36 changes: 36 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
.DEFAULT_GOAL := help

.PHONY: help
help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'

.PHONY: clean
clean: clean_pyc ## Clean all PYC in the system

.PHONY: clean_pyc
clean_pyc: ## Cleans all *.pyc in the system
find . -type f -name "*.pyc" -delete || true

.PHONY: clean_pycache
clean_pycache: ## Removes the __pycaches__
find . -type d -name "*__pycache__*" -delete

.PHONY: serve-docs
serve-docs: ## Runs the local docs
mkdocs serve

.PHONY: build-docs
build-docs: ## Runs the local docs
mkdocs build

.PHONY: test
test: ## Runs the tests
pytest $(TESTONLY) --disable-pytest-warnings -s -vv && scripts/clean

.PHONY: requirements
requirements: ## Install requirements for development
pip install -r requirements.txt

ifndef VERBOSE
.SILENT:
endif
36 changes: 36 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
version: "3.8"
services:
db:
restart: always
image: postgres:14
environment:
POSTGRES_HOST_AUTH_METHOD: trust
POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "postgres"
POSTGRES_DB: "testsuite"
expose:
- "5432"
ports:
- "5432:5432"

mysql:
restart: always
image: mysql:5.7
environment:
MYSQL_USER: "mysql"
MYSQL_PASSWORD: "mysql"
MYSQL_DATABASE: "testsuite"
MYSQL_ROOT_PASSWORD: "password"
expose:
- "3306"
ports:
- "3306:3306"
command: --default-authentication-plugin=mysql_native_password

redis:
restart: always
image: redis:latest
ports:
- "6379:6379"
expose:
- "6379"

0 comments on commit b271a54

Please sign in to comment.