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

adding MANIFEST.in #358

Merged
merged 2 commits into from Jan 17, 2019
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions HISTORY.rst
Expand Up @@ -3,9 +3,10 @@
History
-------

v0.19.0 (2019-XX-XX)
v0.18.1 (2019-01-17)
....................
* add ``ConstrainedBytes`` and ``conbytes`` types #315 @Gr1N
* add ``ConstrainedBytes`` and ``conbytes`` types, #315 @Gr1N
* adding ``MANIFEST.in`` to include license in package ``.tar.gz``, #358 by @samuelcolvin

v0.18.0 (2019-01-13)
....................
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2017, 2018 Samuel Colvin
Copyright (c) 2017, 2018, 2019 Samuel Colvin and other contributors

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 3 additions & 0 deletions MANIFEST.in
@@ -0,0 +1,3 @@
include LICENSE
include README.rst
include HISTORY.rst
2 changes: 1 addition & 1 deletion pydantic/version.py
Expand Up @@ -2,4 +2,4 @@

__all__ = ['VERSION']

VERSION = StrictVersion('0.18')
VERSION = StrictVersion('0.18.1')