Skip to content
GitLab
Menu
Why GitLab
Pricing
Contact Sales
Explore
Why GitLab
Pricing
Contact Sales
Explore
Sign in
Get free trial
Commits on Source (2)
Accidentally broke delete on an earlier commit
· c9ec9c07
Steve Graham
authored
Jun 23, 2020
c9ec9c07
Bump version: 0.2.0 → 0.3.0
· 6d6f5923
Steve Graham
authored
Jun 23, 2020
6d6f5923
Hide whitespace changes
Inline
Side-by-side
dj_gcp_iotdevice/views.py
View file @
6d6f5923
...
...
@@ -101,7 +101,7 @@ class DevicesViewset(GenericViewSet):
:return: Fully qualified path to access the device.
:rtype: str
"""
device_id
=
self
.
kwargs
[
self
.
lookup_
url_kwarg
]
device_id
=
self
.
kwargs
[
self
.
lookup_
field
]
return
self
.
client
.
device_path
(
self
.
config
.
project
,
self
.
config
.
location
,
self
.
config
.
registry
,
device_id
)
...
...
docs/conf.py
View file @
6d6f5923
...
...
@@ -57,7 +57,7 @@ author = u"Steve Graham"
# the built documents.
#
# The short X.Y version.
version
=
'
0.
2
.0
'
version
=
'
0.
3
.0
'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
...
...
setup.cfg
View file @
6d6f5923
[bumpversion]
current_version
= 0.
2
.0
current_version
= 0.
3
.0
commit
= True
tag
= True
...
...
setup.py
View file @
6d6f5923
...
...
@@ -38,6 +38,6 @@ setup(
packages
=
find_packages
(
include
=
[
'
dj_gcp_iotdevice
'
,
'
dj_gcp_iotdevice.*
'
]),
setup_requires
=
setup_requirements
,
url
=
'
https://gitlab.com/pennatus/dj_gcp_iotdevice
'
,
version
=
'
0.
2
.0
'
,
version
=
'
0.
3
.0
'
,
zip_safe
=
False
,
)