8000 RELEASE 2.0.0rc0 by paulmelnikow · Pull Request #170 · lace/vg · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

RELEASE 2.0.0rc0 #170

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

Merged
merged 3 commits into from
Jul 19, 2021
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
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,29 @@
Changelog
=========

## 2.0.0rc0 (Jul. 18, 2021)

### BREAKING CHANGES

- Require Python 3.
- Remove `vg.orient()` (replace with `vg.aligned_with()`)
- Remove `vg.matrix.transform()` (replace with
[`polliwog.transform.apply_transform()`][apply_transform])
- Remove `vg.matrix.pad_with_ones()` and `vg.matrix.unpad()` (no replacement
offered)
- Remove `vg.__version__`.

### New features

- Add v2 forward-compatibility layer. When updating libraries to use `vg>=2.0`,
ensure you are not using any of the functions removed in v2, and update your
imports to `from vg.compat import v2 as vg`. Applications can do the same or
`import vg`. See [Future-proofing your application or library][] for more
explanation of the forward-compatibility layer.

[Future-proofing your application or library]: https://vgpy.dev/#future-proofing-your-application-or-library


## 1.11.1 (Jul. 13, 2021)

- Fix `vg.compat.v1.shape.*` and `vg.compat.v1.matrix.*`.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "vg"
version = "1.11.1"
version = "2.0.0rc0"
description = "Linear algebra for humans: a very good vector-geometry and linear-algebra toolbelt"
authors = ["Paul Melnikow <github@paulmelnikow.com>", "Metabolize, Body Labs, and other contributors"]
license = "BSD-2-Clause"
Expand Down
0