Updates for v1.1.1, including changelog and copyrights.
This commit is contained in:
Родитель
bc5add1b14
Коммит
95b43c171a
|
@ -1,6 +1,12 @@
|
||||||
remoteobjects Changelog
|
remoteobjects Changelog
|
||||||
=======================
|
=======================
|
||||||
|
|
||||||
|
1.1.1 (?)
|
||||||
|
-----------
|
||||||
|
|
||||||
|
* Applied a patch from Alex Gaynor to allow `None` for `Datetime` fields.
|
||||||
|
|
||||||
|
|
||||||
1.1 (2009-11-24)
|
1.1 (2009-11-24)
|
||||||
----------------
|
----------------
|
||||||
|
|
||||||
|
|
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
||||||
Copyright (c) 2009 Six Apart Ltd.
|
Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -39,7 +39,7 @@ master_doc = 'index'
|
||||||
|
|
||||||
# General information about the project.
|
# General information about the project.
|
||||||
project = u'remoteobjects'
|
project = u'remoteobjects'
|
||||||
copyright = u'2009 Six Apart'
|
copyright = u'2009-2010 Six Apart'
|
||||||
|
|
||||||
# The version info for the project you're documenting, acts as replacement for
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
# |version| and |release|, also used in various other places throughout the
|
# |version| and |release|, also used in various other places throughout the
|
||||||
|
@ -48,7 +48,7 @@ copyright = u'2009 Six Apart'
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
version = '1.1'
|
version = '1.1'
|
||||||
# The full version, including alpha/beta/rc tags.
|
# The full version, including alpha/beta/rc tags.
|
||||||
release = '1.1'
|
release = '1.1.1'
|
||||||
|
|
||||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||||
# for a list of supported languages.
|
# for a list of supported languages.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -103,8 +103,8 @@ but extensible and replaceable through plain old subclassing.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = '1.1'
|
__version__ = '1.1.1'
|
||||||
__date__ = '24 November 2009'
|
__date__ = '21 May 2010'
|
||||||
__author__ = 'Six Apart Ltd.'
|
__author__ = 'Six Apart Ltd.'
|
||||||
__credits__ = """Brad Choate
|
__credits__ = """Brad Choate
|
||||||
Leah Culver
|
Leah Culver
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -39,7 +39,7 @@ except Exception:
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name='remoteobjects',
|
name='remoteobjects',
|
||||||
version='1.1',
|
version='1.1.1',
|
||||||
description='an Object RESTational Model',
|
description='an Object RESTational Model',
|
||||||
author='Six Apart Ltd.',
|
author='Six Apart Ltd.',
|
||||||
author_email='python@sixapart.com',
|
author_email='python@sixapart.com',
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (c) 2009 Six Apart Ltd.
|
# Copyright (c) 2009-2010 Six Apart Ltd.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
|
|
Загрузка…
Ссылка в новой задаче