Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Changelog 0.6.5 #75

Merged
merged 7 commits into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 67 additions & 0 deletions .authors.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
- name: Aaron Meurer
email: [email protected]
github: asmeurer
num_commits: 1
first_commit: 2014-02-19 16:17:41
- name: Jannis Leidel
email: [email protected]
github: jezdez
num_commits: 0
first_commit: 2022-06-28 05:35:02
- name: Conda Bot
email: [email protected]
github: conda-bot
aliases:
- conda-bot
- conda bot
alternate_emails:
- [email protected]
- [email protected]
- [email protected]
num_commits: 22
first_commit: 2022-01-25 16:00:27
- name: Ken Odegard
email: [email protected]
github: kenodegard
num_commits: 5
first_commit: 2022-06-15 14:15:32
- name: Daniel Holth
email: [email protected]
github: dholth
num_commits: 7
first_commit: 2022-10-14 14:44:28
- name: Ilan Schnell
email: [email protected]
github: ilanschnell
num_commits: 155
first_commit: 2013-03-23 22:44:55
- name: William Schwartz
email: [email protected]
github: wkschwartz
num_commits: 8
first_commit: 2013-11-04 15:35:43
- name: Ray Donnelly
email: [email protected]
github: mingwandroid
num_commits: 2
first_commit: 2017-10-29 17:00:55
- name: Bradley M. Froehle
email: [email protected]
github: bfroehle
num_commits: 1
first_commit: 2013-05-27 18:40:21
- name: Mike Sarahan
email: [email protected]
github: msarahan
num_commits: 0
first_commit: 2017-10-30 19:02:20
- name: Ondřej Čertík
email: [email protected]
github: certik
num_commits: 1
first_commit: 2013-03-28 21:20:51
- name: Travis E. Oliphant
email: [email protected]
github: teoliphant
num_commits: 1
first_commit: 2013-03-26 00:19:31
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@
build/
dist/
__pycache__/
rever/
28 changes: 28 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# This file was autogenerated by rever: https://regro.github.io/rever-docs/
# This prevent git from showing duplicates with various logging commands.
# See the git documentation for more details. The syntax is:
#
# good-name <good-email> bad-name <bad-email>
#
# You can skip bad-name if it is the same as good-name and is unique in the repo.
#
# This file is up-to-date if the command git log --format="%aN <%aE>" | sort -u
# gives no duplicates.

Aaron Meurer <[email protected]>
Bradley M. Froehle <[email protected]>
Conda Bot <[email protected]> conda-bot <[email protected]>
Conda Bot <[email protected]> conda-bot <[email protected]>
Conda Bot <[email protected]> conda-bot <[email protected]>
Conda Bot <[email protected]> conda bot <[email protected]>
Conda Bot <[email protected]> conda bot <[email protected]>
Conda Bot <[email protected]> conda bot <[email protected]>
Daniel Holth <[email protected]>
Ilan Schnell <[email protected]>
Jannis Leidel <[email protected]>
Ken Odegard <[email protected]>
Mike Sarahan <[email protected]>
Ondřej Čertík <[email protected]>
Ray Donnelly <[email protected]>
Travis E. Oliphant <[email protected]>
William Schwartz <[email protected]>
15 changes: 15 additions & 0 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
All of the people who have made at least one contribution to pycosat.
Authors are sorted alphabetically.

* Aaron Meurer
* Bradley M. Froehle
* Conda Bot
* Daniel Holth
* Ilan Schnell
* Jannis Leidel
* Ken Odegard
* Mike Sarahan
* Ondřej Čertík
* Ray Donnelly
* Travis E. Oliphant
* William Schwartz
84 changes: 0 additions & 84 deletions CHANGELOG

This file was deleted.

96 changes: 96 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,96 @@
[//]: # (current developments)

## 0.6.5 (2023-10-02)

### Enhancements

* Update Python version support. (#56)

### Bug fixes

* Use `PyMem_Calloc()` to initialize memory to `0`. (#58)

### Contributors

* @conda-bot
* @dholth made their first contribution in https://github.com/conda/pycosat/pull/54
* @kenodegard



## 0.6.4 (2022-10-24)

* Fix memory leak in blocksol() when iterating over solutions


## 0.6.3 (2017-10-29)

* Revert 'always use Python memory manager'


## 0.6.2 (2017-03-16)

* update picosat to 965
* fixed __version__ attribute on Windows, #21
* fix some typos
* add official Python 3.5 and 3.6 support


## 0.6.1 (2014-04-28)

* fix the initialization of the soliterator type in Py3k, thanks bfroehle
* update picosat from 954 to 957
* add ability of solve and itersolve to take general iterables as clauses arguments, each containing general iterables


## 0.6.0 (2013-04-16)

* add ability to specify clauses as objects which support the iterator protocol
* added a Python 3 version of the 8 queens example which demonstrates the usefulness of the "yield from" statement


## 0.5.0 (2013-04-09)

* add Python 2.5 support
* add module docstring
* add 8 queens problem as an example


## 0.4.2 (2013-04-01)

* fixed types in readme
* add SAT-based Sudoku solver as an example
* add docstings to solve and itersolve
* add test for clauses containing type long literals on Python 2


## 0.4.1 (2013-03-28)

* add documentation
* added more tests
* add error handling for memory management


## 0.4.0 (2013-03-27)

* allow keyword arguments to pycosat.solve and pycosat.itersolve
* add ability to set propagation limit
* fixed some bugs which were causing segfaults


## 0.3.0 (2013-03-26)

* add solution iterator (pycosat.itersolve)
* make number of variables optional argument


## 0.2.0 (2013-03-25)

* fixed MSVC compiler problems
* use Python memory manager in picosat
* release GIL during main picosat computation


## 0.1.0 (2013-03-24)

* initial pre-alpha release