-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathspecs.py
More file actions
22 lines (15 loc) · 760 Bytes
/
Copy pathspecs.py
File metadata and controls
22 lines (15 loc) · 760 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Copyright (C) 2020-2022 Vanessa Sochat.
# This Source Code Form is subject to the terms of the
# Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed
# with this file, You can obtain one at http://mozilla.org/MPL/2.0/.
from opencontainers.struct import IntStruct
# VersionMajor is for an API incompatible changes
VersionMajor = 0
# VersionMinor is for functionality in a backwards-compatible manner
VersionMinor = 1
# VersionPatch is for backwards-compatible bug fixes
VersionPatch = 0
# VersionDev indicates development branch. Releases will be empty string.
VersionDev = "-dev"
# Version is the specification version that the package types support.
Version = "%d.%d.%d%s" % (VersionMajor, VersionMinor, VersionPatch, VersionDev)