diff --git a/CHANGELOG.md b/CHANGELOG.md index 70d553b..1651db3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## 0.4.1 + +* Fixed model generation on oracle database (#252) +* New option to define line ending character (#241) +* Fixed model generation for two table with same name, different schema on mssql (#246) +* Proper naming strategy typings (#249) +* Release version without installed db drivers + ## 0.4.0 ### BREAKING CHANGES diff --git a/README.md b/README.md index 24f0c87..146257e 100644 --- a/README.md +++ b/README.md @@ -15,6 +15,8 @@ Supported db engines: ## Installation +### Versions +Typeorm-model-generator comes with preinstalled driver for each supported db(except for oracle). However if you want to use it as a dev-dependency you may want to install your db driver manually to reduce dependency footprint, reduce time spent in the CI. In such case you can use version without preinstalled db drivers - `npm i typeorm-model-generator@no-engines`. ### Global module To install module globally simply type `npm i -g typeorm-model-generator` in your console. ### Npx way