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

Fix #339: Add ChangeLog placeholder to fix symlink #362

Closed
wants to merge 2 commits into from
Closed
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
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
This is a placeholder for our changelog symlink.

Actual changes will appear here after build.
11 changes: 7 additions & 4 deletions mock/mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,14 @@

import six
from six import wraps
from pbr.version import VersionInfo

_v = VersionInfo('mock').semantic_version()
__version__ = _v.release_string()
version_info = _v.version_tuple()
# TODO(houglum): Adjust this section if we use a later version of mock.
# Manually specify version so that we don't need to rely on pbr (which works
# best when packages are installed via pip rather than direct download).
# This allows us to include mock in other projects which can be installed
# via methods other than pip (downloading a git repo, tarball, etc.).
__version__ = '2.0.0'
version_info = (2, 0, 0, 'final', 0)

import mock

Expand Down