Skip to content
Snippets Groups Projects
Commit 61f61555 authored by Claudiu Popa's avatar Claudiu Popa
Browse files

Prepare 2.1.0

parent 0bb6cf27
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -4,7 +4,7 @@ astroid's ChangeLog
 
What's New in astroid 2.1.0?
============================
Release Date: TBA
Release Date: 2018-11-25
 
* ``threading.Lock.acquire`` has the ``timeout`` parameter now.
 
Loading
Loading
@@ -89,7 +89,7 @@ What's New in astroid 2.0?
==========================
 
Release Date: 2018-07-15
* String representation of nodes takes in account precedence and associativity rules of operators.
 
* Fix loading files with `modutils.load_from_module` when
Loading
Loading
@@ -373,7 +373,7 @@ Release Date: 2017-04-13
 
This new attribute holds the annotations for the keyword-only
arguments.
* `namedtuple` inference now understands `rename` keyword argument
 
* Classes can now know their definition-time arguments.
Loading
Loading
@@ -456,7 +456,7 @@ Release Date: 2017-04-13
 
* Don't take in consideration invalid assignments, especially when __slots__
declaration forbids them.
Close issue #332
 
* Functional form of enums support accessing values through __call__.
Loading
Loading
@@ -488,7 +488,7 @@ Release Date: 2017-04-13
When looking up a name in a scope, Scope.lookup will return
only the values which will be reachable after execution, as seen
in the following code:
a = 1
a = 2
 
Loading
Loading
@@ -520,7 +520,7 @@ Release Date: 2017-04-13
 
* relative_to_absolute_name or methods calling it will now raise
TooManyLevelsError when a relative import was trying to
access something beyond the top-level package.
access something beyond the top-level package.
 
* AstroidBuildingException is now AstroidBuildingError. The first
name will exist until astroid 2.0.
Loading
Loading
@@ -537,7 +537,7 @@ Release Date: 2017-04-13
Closes issue #273. Patch by notsqrt.
 
* assigned_stmts methods have the same signature from now on.
They used to have different signatures and each one made
assumptions about what could be passed to other implementations,
leading to various possible crashes when one or more arguments
Loading
Loading
@@ -578,7 +578,7 @@ What's New in astroid 1.4.0?
============================
 
Release Date: 2015-11-29
 
* Class.getattr('__mro__') returns the actual MRO. Closes issue #128.
 
Loading
Loading
@@ -599,7 +599,7 @@ Release Date: 2015-11-29
* Add some fixes which enhances the Jython support.
The fix mostly includes updates to modutils, which is
modified in order to properly lookup paths from live objects,
which ends in $py.class, not pyc as for Python 2,
which ends in $py.class, not pyc as for Python 2,
Closes issue #83.
 
* The Generator objects inferred with `infer_call_result`
Loading
Loading
@@ -637,7 +637,7 @@ Release Date: 2015-11-29
bases.Proxy and bases.Proxy doesn't implement the .getattr method.
Closes issue #91.
 
* Don't hard fail when calling .mro() on a class which has
* Don't hard fail when calling .mro() on a class which has
combined both newstyle and old style classes. The class
in question is actually newstyle (and the __mro__ can be
retrieved using Python).
Loading
Loading
@@ -657,7 +657,7 @@ Release Date: 2015-11-29
retrieves the first value inferred from a base.
 
* Expose an implicit_metaclass() method in Class. This will return
a builtins.type instance for newstyle classes.
a builtins.type instance for newstyle classes.
 
* Add two new exceptions for handling MRO error cases. DuplicateBasesError
is emitted when duplicate bases are found in a class,
Loading
Loading
@@ -800,7 +800,7 @@ Release Date: 2015-11-29
 
* Add support for indexing bytes on Python 3.
 
* Add support for inferring subscript on instances, which will
* Add support for inferring subscript on instances, which will
use __getitem__. Closes issue #124.
 
* Add support for pkg_resources.declare_namespaces.
Loading
Loading
@@ -853,7 +853,7 @@ Release Date: 2015-11-29
AstroidBuilder._data_build.
 
Closes issue #116.
* Class._explicit_metaclass is now a public API, in the form of
Class.declared_metaclass.
 
Loading
Loading
@@ -904,7 +904,7 @@ Release Date: 2015-11-29
since it just uses None to represent this kind of operation,
which seems conceptually wrong, due to the fact the AST contains
non-AST nodes. Closes issue #206.
 
 
 
Loading
Loading
@@ -956,7 +956,7 @@ Release Date: 2015-03-11
* Implement the assigned_stmts operation for Starred nodes,
which was omitted when support for Python 3 was added in astroid.
Closes issue #36.
 
 
What's New in astroid 1.3.4?
Loading
Loading
@@ -1015,7 +1015,7 @@ Release Date: 2014-11-22
 
 
* Fixed a crash with invalid subscript index.
* Implement proper base class semantics for Python 3, where
every class derives from object.
 
Loading
Loading
@@ -1028,7 +1028,7 @@ What's New in astroid 1.3.1?
 
Release Date: 2014-11-21
 
* Fixed a crash issue with the pytest brain module.
 
 
Loading
Loading
@@ -1076,7 +1076,7 @@ Release Date: 2014-11-20
* astroid.register_module_extender has been added to generalize
the support for module extenders as used by many brain plugins.
 
* brain plugins can now register hooks to handle failed imports,
* brain plugins can now register hooks to handle failed imports,
as done by the gobject-introspection plugin.
 
* The modules have been moved to a separate package directory,
Loading
Loading
@@ -1903,6 +1903,3 @@ Release Date: 2005-10-21
longer be maintained (this explains that this package is starting with
the 0.13 version number, since the fork occurs with the version
released in logilab-common 0.12).
Loading
Loading
@@ -21,7 +21,7 @@ distname = "astroid"
 
modname = "astroid"
 
version = "2.1.0-dev"
version = "2.1.0"
numversion = tuple(int(elem) for elem in version.split(".") if elem.isdigit())
 
extras_require = {}
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment