* Introduce the `basemodel.should_bind_engine` config flag, which can be used, e.g.: in ftests, to disable the automatic engine setup, even when application code `config.include('pyramid_basemodel')`\s.
Defaults to `True`!
0.3
---
Default `basemodel.should_create_all` to `False`. This will break apps that rely on tables being created by default. However, it's much saner to only invoke both `metadata.create_all(engine)` and `metadata.drop_all(engine)` when explicitly told to, particularly as most applications will use migrations to manage the database schema.
0.2.4
--------------
Faff about horribly with the slug generation code.
0.2.3
-----
Fix Python3 `KeyError` syntax bug.
0.2.2
-----
Support dotted path `sqlalchemy.pool_class` configuration.
0.2.1
-----
Provide `util.get_object_id` function and stamp `sqlalchemy.ext.declarative.declarative_base()` subclasses with the `interfaces.IDeclarativeBase` interface.