Skip to content

Commit

Permalink
Update CHANGELOG and README files
Browse files Browse the repository at this point in the history
  • Loading branch information
amalashkevich authored and kozlovsky committed Jan 11, 2016
1 parent 07576b7 commit 9c16604
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 7 deletions.
33 changes: 33 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
# Pony ORM Release 0.6.2 (2015-01-11)

The documentation was moved from this repo to a separate one at https://github.com/ponyorm/pony-doc
The compiled version can be found at https://docs.ponyorm.com

## New features

* Python 3.5 support
* #132, #145: raw_sql() function was added
* #126: Ability to use @db_session with generator functions
* #116: Add support to select by UUID
* Ability to get string SQL statement using the Query.get_sql() method
* New function delete(gen) and Query.delete(bulk=False)
* Now it is possible to override Entity.__init__() and declare custom entity methods

## Backward incompatible changes

* Normalizing table names for symmetric relationships
* Autostrip - automatically remove leading and trailing characters

## Bugfixes

* #87: Pony fails with pymysql installed as MySQLdb
* #118: Pony should reconnect if previous connection was created before process was forked
* #121: Unable to update value of unique attribute
* #122: AssertionError when changing part of a composite key
* #127: a workaround for incorrect pysqlite locking behavior
* #136: Cascade delete does not work correctly for one-to-one relationships
* #141, #143: remove restriction on adding new methods to entities
* #142: Entity.select_random() AssertionError
* #147: Add 'atom_expr' symbol handling for Python 3.5 grammar


# Pony ORM Release 0.6.1 (2015-02-20)

* Closed #65: Now the select(), filter(), order_by(), page(), limit(), random() methods can be applied to collection attributes
Expand Down
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,20 +12,19 @@ Pony translates queries to SQL using a specific database dialect. Currently Pony
Pony ORM also include the ER Diagram Editor which is a great tool for prototyping. You can create your ER diagram online at [https://editor.ponyorm.com](https://editor.ponyorm.com), generate the database schema based on the diagram and start working with the database using declarative queries in seconds.

The package pony.orm.examples contains several examples.
Documenation is available at [http://doc.ponyorm.com](http://doc.ponyorm.com)

Documenation is available at [https://docs.ponyorm.com](https://docs.ponyorm.com)
The documentation source is avaliable at [https://github.com/ponyorm/pony-doc](https://github.com/ponyorm/pony-doc), it is released under Apache 2.0 license.
Please create new documentation related issues [https://github.com/ponyorm/pony-doc/issues](https://github.com/ponyorm/pony-doc/issues) or make a pull request with your improvements.

We are looking forward to your comments and suggestions at our mailing list [http://ponyorm-list.ponyorm.com](http://ponyorm-list.ponyorm.com)

License
-----------

Pony ORM is released under multiple licenses, check [ponyorm.com](http://ponyorm.com/license-and-pricing.html) for more information.

Pony ORM documentation is licensed under a Creative Commons Attribution-ShareAlike 3.0 Unported License.

By editing or otherwise contributing to Pony ORM documentation, you agree to license any text you change or contribute under the CC BY-SA license.
Pony ORM is released under multiple licenses, check [ponyorm.com](https://ponyorm.com/license-and-pricing.html) for more information.

Copyright (c) 2014 Pony ORM, LLC. All rights reserved.
Copyright (c) 2016 Pony ORM, LLC. All rights reserved.
team (at) ponyorm.com

Please send your questions, comments and suggestions to our mailing list [http://ponyorm-list.ponyorm.com](http://ponyorm-list.ponyorm.com)
2 changes: 2 additions & 0 deletions docs/README
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
See docs at https://docs.ponyorm.com
The source is at https://github.com/ponyorm/pony-doc

0 comments on commit 9c16604

Please sign in to comment.