Skip to content

Commit e310958

Browse files
committed
Revert version bump
1 parent 9578b85 commit e310958

33 files changed

Lines changed: 86 additions & 86 deletions

dfetch/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Dfetch."""
22

3-
__version__ = "0.14.0"
3+
__version__ = "0.13.0"
44

55
DEFAULT_MANIFEST_NAME: str = "dfetch.yaml"

features/check-archive.feature

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Feature: Checking dependencies from an archive
2424
When I run "dfetch check" in MyProject
2525
Then the output shows
2626
"""
27-
Dfetch (0.14.0)
27+
Dfetch (0.13.0)
2828
SomeProject:
2929
> up-to-date (some-remote-server/SomeProject.tar.gz)
3030
"""
@@ -48,7 +48,7 @@ Feature: Checking dependencies from an archive
4848
When I run "dfetch check" in MyProject
4949
Then the output shows
5050
"""
51-
Dfetch (0.14.0)
51+
Dfetch (0.13.0)
5252
SomeProject:
5353
> up-to-date (sha256:<archive-sha256>)
5454
"""
@@ -69,7 +69,7 @@ Feature: Checking dependencies from an archive
6969
When I run "dfetch check" in MyProject
7070
Then the output shows
7171
"""
72-
Dfetch (0.14.0)
72+
Dfetch (0.13.0)
7373
SomeProject:
7474
> wanted (some-remote-server/SomeProject.tar.gz), available (some-remote-server/SomeProject.tar.gz)
7575
"""
@@ -87,7 +87,7 @@ Feature: Checking dependencies from an archive
8787
When I run "dfetch check"
8888
Then the output shows
8989
"""
90-
Dfetch (0.14.0)
90+
Dfetch (0.13.0)
9191
non-existent-archive:
9292
> wanted (https://dfetch.invalid/does-not-exist.tar.gz), but not available at the upstream.
9393
"""
@@ -113,7 +113,7 @@ Feature: Checking dependencies from an archive
113113
When I run "dfetch check SomeProject" in MyProject
114114
Then the output shows
115115
"""
116-
Dfetch (0.14.0)
116+
Dfetch (0.13.0)
117117
SomeProject:
118118
> up-to-date (some-remote-server/SomeProject.tar.gz)
119119
"""
@@ -136,7 +136,7 @@ Feature: Checking dependencies from an archive
136136
When I run "dfetch check SomeProject" in MyProject
137137
Then the output shows
138138
"""
139-
Dfetch (0.14.0)
139+
Dfetch (0.13.0)
140140
SomeProject:
141141
> Local changes were detected, please generate a patch using 'dfetch diff SomeProject' and add it to your manifest using 'patch:'. Alternatively overwrite the local changes with 'dfetch update --force SomeProject'
142142
> up-to-date (some-remote-server/SomeProject.tar.gz)

features/check-git-repo.feature

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Feature: Checking dependencies from a git repository
2626
When I run "dfetch check"
2727
Then the output shows
2828
"""
29-
Dfetch (0.14.0)
29+
Dfetch (0.13.0)
3030
ext/test-repo-rev-only:
3131
> wanted (e1fda19a57b873eb8e6ae37780594cbb77b70f1a), available (e1fda19a57b873eb8e6ae37780594cbb77b70f1a)
3232
ext/test-rev-and-branch:
@@ -52,7 +52,7 @@ Feature: Checking dependencies from a git repository
5252
When I run "dfetch check"
5353
Then the output shows
5454
"""
55-
Dfetch (0.14.0)
55+
Dfetch (0.13.0)
5656
ext/test-repo-tag-v1:
5757
> wanted (v1), available (v2.0)
5858
"""
@@ -82,7 +82,7 @@ Feature: Checking dependencies from a git repository
8282
When I run "dfetch check"
8383
Then the output shows
8484
"""
85-
Dfetch (0.14.0)
85+
Dfetch (0.13.0)
8686
ext/test-repo-rev-only:
8787
> up-to-date (e1fda19a57b873eb8e6ae37780594cbb77b70f1a)
8888
ext/test-rev-and-branch:
@@ -116,7 +116,7 @@ Feature: Checking dependencies from a git repository
116116
And I run "dfetch check"
117117
Then the output shows
118118
"""
119-
Dfetch (0.14.0)
119+
Dfetch (0.13.0)
120120
ext/test-repo-tag:
121121
> wanted (v2.0), current (v1), available (v2.0)
122122
"""
@@ -138,7 +138,7 @@ Feature: Checking dependencies from a git repository
138138
When I run "dfetch check SomeProject"
139139
Then the output shows
140140
"""
141-
Dfetch (0.14.0)
141+
Dfetch (0.13.0)
142142
SomeProject:
143143
> Local changes were detected, please generate a patch using 'dfetch diff SomeProject' and add it to your manifest using 'patch:'. Alternatively overwrite the local changes with 'dfetch update --force SomeProject'
144144
> up-to-date (master - 90be799b58b10971691715bdc751fbe5237848a0)
@@ -159,7 +159,7 @@ Feature: Checking dependencies from a git repository
159159
When I run "dfetch check SomeProject"
160160
Then the output shows
161161
"""
162-
Dfetch (0.14.0)
162+
Dfetch (0.13.0)
163163
SomeProject:
164164
> up-to-date (master - 90be799b58b10971691715bdc751fbe5237848a0)
165165
"""
@@ -179,7 +179,7 @@ Feature: Checking dependencies from a git repository
179179
When I run "dfetch check"
180180
Then the output shows
181181
"""
182-
Dfetch (0.14.0)
182+
Dfetch (0.13.0)
183183
non-existent-url:
184184
> >>>git ls-remote --heads https://giiiiiidhub.com/i-do-not-exist/broken<<< failed!
185185
'https://giiiiiidhub.com/i-do-not-exist/broken' is not a valid URL or unreachable:
@@ -209,7 +209,7 @@ Feature: Checking dependencies from a git repository
209209
When I run "dfetch check"
210210
Then the output shows
211211
"""
212-
Dfetch (0.14.0)
212+
Dfetch (0.13.0)
213213
SomeProjectMissingTag:
214214
> wanted (i-dont-exist), but not available at the upstream.
215215
SomeProjectNonExistentBranch:
@@ -231,7 +231,7 @@ Feature: Checking dependencies from a git repository
231231
When I run "dfetch check"
232232
Then the output starts with:
233233
"""
234-
Dfetch (0.14.0)
234+
Dfetch (0.13.0)
235235
>>>git ls-remote --heads --tags https://github.com/dfetch-org/test-repo-private.git<<< returned 128:
236236
"""
237237

@@ -248,6 +248,6 @@ Feature: Checking dependencies from a git repository
248248
When I run "dfetch check"
249249
Then the output starts with:
250250
"""
251-
Dfetch (0.14.0)
251+
Dfetch (0.13.0)
252252
>>>git ls-remote --heads --tags git@github.com:dfetch-org/test-repo-private.git<<< returned 128:
253253
"""

features/check-specific-projects.feature

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Feature: Checking specific projects
2727
When I run "dfetch check ext/test-rev-and-branch"
2828
Then the output shows
2929
"""
30-
Dfetch (0.14.0)
30+
Dfetch (0.13.0)
3131
ext/test-rev-and-branch:
3232
> wanted (main - 8df389d0524863b85f484f15a91c5f2c40aefda1), available (main - e1fda19a57b873eb8e6ae37780594cbb77b70f1a)
3333
"""

features/check-svn-repo.feature

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Feature: Checking dependencies from a svn repository
2929
When I run "dfetch check"
3030
Then the output shows
3131
"""
32-
Dfetch (0.14.0)
32+
Dfetch (0.13.0)
3333
cunit-svn-rev-only:
3434
> wanted (176), available (trunk - 176)
3535
cunit-svn-rev-and-branch:
@@ -56,7 +56,7 @@ Feature: Checking dependencies from a svn repository
5656
When I run "dfetch check"
5757
Then the output shows
5858
"""
59-
Dfetch (0.14.0)
59+
Dfetch (0.13.0)
6060
cutter-svn-tag:
6161
> wanted (1.1.7), available (1.1.8)
6262
"""
@@ -94,7 +94,7 @@ Feature: Checking dependencies from a svn repository
9494
When I run "dfetch check"
9595
Then the output shows
9696
"""
97-
Dfetch (0.14.0)
97+
Dfetch (0.13.0)
9898
cunit-svn-rev-only:
9999
> wanted (169), current (trunk - 169), available (trunk - 176)
100100
cunit-svn-rev-and-branch:
@@ -118,7 +118,7 @@ Feature: Checking dependencies from a svn repository
118118
When I run "dfetch check" in MyProject
119119
Then the output shows
120120
"""
121-
Dfetch (0.14.0)
121+
Dfetch (0.13.0)
122122
SomeProject:
123123
> wanted (latest), current (1), available (1)
124124
"""
@@ -137,7 +137,7 @@ Feature: Checking dependencies from a svn repository
137137
When I run "dfetch check"
138138
Then the output shows
139139
"""
140-
Dfetch (0.14.0)
140+
Dfetch (0.13.0)
141141
non-existent-url:
142142
> >>>svn info --non-interactive https://giiiiiidhub.com/i-do-not-exist/broken/trunk<<< failed!
143143
'https://giiiiiidhub.com/i-do-not-exist/broken/trunk' is not a valid URL or unreachable:
@@ -163,7 +163,7 @@ Feature: Checking dependencies from a svn repository
163163
When I run "dfetch check" in MyProject
164164
Then the output shows
165165
"""
166-
Dfetch (0.14.0)
166+
Dfetch (0.13.0)
167167
cutter-svn-tag:
168168
> wanted (non-existent-tag), but not available at the upstream.
169169
"""
@@ -184,7 +184,7 @@ Feature: Checking dependencies from a svn repository
184184
When I run "dfetch check SomeProject"
185185
Then the output shows
186186
"""
187-
Dfetch (0.14.0)
187+
Dfetch (0.13.0)
188188
SomeProject:
189189
> up-to-date (v1)
190190
"""

features/checked-project-has-dependencies.feature

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Feature: Check for dependencies in projects
2929
When I run "dfetch check" in MyProject
3030
Then the output shows
3131
"""
32-
Dfetch (0.14.0)
32+
Dfetch (0.13.0)
3333
SomeProject:
3434
> wanted (v1), available (v1)
3535
"""
@@ -66,7 +66,7 @@ Feature: Check for dependencies in projects
6666
When I run "dfetch check" in MyProject
6767
Then the output shows
6868
"""
69-
Dfetch (0.14.0)
69+
Dfetch (0.13.0)
7070
Multiple manifests found, using dfetch.yaml
7171
SomeProject:
7272
> up-to-date (v1)
@@ -110,7 +110,7 @@ Feature: Check for dependencies in projects
110110
When I run "dfetch check" in MyProject
111111
Then the output shows
112112
"""
113-
Dfetch (0.14.0)
113+
Dfetch (0.13.0)
114114
Multiple manifests found, using dfetch.yaml
115115
SomeProject:
116116
> up-to-date (v1)

features/diff-in-git.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Feature: Diff in git
6565
When I run "dfetch diff SomeProject"
6666
Then the output shows
6767
"""
68-
Dfetch (0.14.0)
68+
Dfetch (0.13.0)
6969
SomeProject:
7070
> No diffs found since 59efb91396fd369eb113b43382783294dc8ed6d2
7171
"""
@@ -92,7 +92,7 @@ Feature: Diff in git
9292
When I run "dfetch diff SomeProject"
9393
Then the output shows
9494
"""
95-
Dfetch (0.14.0)
95+
Dfetch (0.13.0)
9696
SomeProject:
9797
> No diffs found since 59efb91396fd369eb113b43382783294dc8ed6d2
9898
"""

features/diff-in-svn.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ Feature: Diff in svn
6262
When I run "dfetch diff SomeProject" in MySvnProject
6363
Then the output shows
6464
"""
65-
Dfetch (0.14.0)
65+
Dfetch (0.13.0)
6666
SomeProject:
6767
> No diffs found since 1
6868
"""
@@ -89,7 +89,7 @@ Feature: Diff in svn
8989
When I run "dfetch diff SomeProject" in MySvnProject
9090
Then the output shows
9191
"""
92-
Dfetch (0.14.0)
92+
Dfetch (0.13.0)
9393
SomeProject:
9494
> No diffs found since 1
9595
"""

features/fetch-archive.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ Feature: Fetching dependencies from an archive (tar/zip)
117117
When I run "dfetch update" in MyProject
118118
Then the output shows
119119
"""
120-
Dfetch (0.14.0)
120+
Dfetch (0.13.0)
121121
SomeProject:
122122
> Hash mismatch for SomeProject! sha256 expected 0000000000000000000000000000000000000000000000000000000000000000
123123
"""
@@ -195,7 +195,7 @@ Feature: Fetching dependencies from an archive (tar/zip)
195195
When I run "dfetch update --force" in MyProject
196196
Then the output shows
197197
"""
198-
Dfetch (0.14.0)
198+
Dfetch (0.13.0)
199199
SomeProject:
200200
> Fetched some-remote-server/SomeProject.tar.gz
201201
"""

features/fetch-checks-destination.feature

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Feature: Fetch checks destinations
2020
When I run "dfetch update"
2121
Then the output shows
2222
"""
23-
Dfetch (0.14.0)
23+
Dfetch (0.13.0)
2424
ext/test-repo-tag:
2525
> Skipping, path "." is not allowed as destination.
2626
"""
@@ -41,7 +41,7 @@ Feature: Fetch checks destinations
4141
When I run "dfetch update"
4242
Then the output shows
4343
"""
44-
Dfetch (0.14.0)
44+
Dfetch (0.13.0)
4545
ext/test-repo-tag:
4646
> Skipping, path "../../some-higher-folder" is outside manifest directory tree.
4747
"""

0 commit comments

Comments
 (0)