Commit 078467d 1 parent 0ab9a43 commit 078467d Copy full SHA for 078467d
File tree 5 files changed +9
-7
lines changed
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -105,9 +105,11 @@ jobs:
105
105
- name : Prepare distribution structure
106
106
run : |
107
107
mkdir -p dist
108
- for f in $( find downloaded -type f );
109
- d=$( dirname ${f} | rev | cut -d'/' -f 1 | rev );
110
- cp -v ${f} dist/${d};
108
+ for f in $( find downloaded -type f ); do \
109
+ echo ${f}; \
110
+ d=$( dirname ${f} | rev | cut -d'/' -f 1 | rev ); \
111
+ echo ${d}; \
112
+ cp -v ${f} dist/${d}; \
111
113
done
112
114
- name : Display structure of dist files
113
115
run : ls -lR dist
Original file line number Diff line number Diff line change 1
1
Changelog
2
2
=========
3
3
4
- 0.6.7
4
+ 0.6.8
5
5
-----
6
6
7
7
* Update dependencies
Original file line number Diff line number Diff line change 61
61
# The short X.Y version.
62
62
version = "0.6"
63
63
# The full version, including alpha/beta/rc tags.
64
- release = "0.6.7 "
64
+ release = "0.6.8 "
65
65
66
66
# The language for content autogenerated by Sphinx. Refer to documentation
67
67
# for a list of supported languages.
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ def fix_doc(txt):
27
27
28
28
setup (
29
29
name = "Wikipedia-API" ,
30
- version = "0.6.7 " ,
30
+ version = "0.6.8 " ,
31
31
description = "Python Wrapper for Wikipedia" ,
32
32
long_description = README + "\n \n " + CHANGES ,
33
33
classifiers = [
Original file line number Diff line number Diff line change 6
6
cases.
7
7
"""
8
8
9
- __version__ = (0 , 6 , 7 )
9
+ __version__ = (0 , 6 , 8 )
10
10
from collections import defaultdict
11
11
from enum import IntEnum
12
12
import logging
You can’t perform that action at this time.
0 commit comments