Skip to content

Commit f39115b

Browse files
authored
Updated version and documentation for release of 20201228 (#3367)
1 parent 998ff63 commit f39115b

File tree

9 files changed

+28
-83
lines changed

9 files changed

+28
-83
lines changed

appveyor.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,22 @@
11
environment:
22
matrix:
3-
- DESCRIPTION: "Windows with 32-bit Python 3.8"
3+
- DESCRIPTION: "Windows with 32-bit Python 3.9"
44
MACHINE_TYPE: "x86"
5-
PYTHON: "C:\\Python38"
6-
PYTHON_VERSION: "3.8"
5+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
6+
PYTHON: "C:\\Python39"
7+
PYTHON_VERSION: "3.9"
78
L2TBINARIES_TRACK: "dev"
8-
- DESCRIPTION: "Windows with 64-bit Python 3.8"
9+
- DESCRIPTION: "Windows with 64-bit Python 3.9"
910
MACHINE_TYPE: "amd64"
10-
PYTHON: "C:\\Python38-x64"
11-
PYTHON_VERSION: "3.8"
11+
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
12+
PYTHON: "C:\\Python39-x64"
13+
PYTHON_VERSION: "3.9"
1214
L2TBINARIES_TRACK: "dev"
13-
- DESCRIPTION: "Mac OS with Python 3.8"
15+
- DESCRIPTION: "Mac OS with Python 3.9"
1416
APPVEYOR_BUILD_WORKER_IMAGE: macos
1517
HOMEBREW_NO_INSTALL_CLEANUP: 1
1618

1719
install:
18-
- cmd: '"C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\SetEnv.cmd" /x86 /release'
1920
- cmd: "%PYTHON%\\python.exe -m pip install -U pip setuptools wheel"
2021
- cmd: "%PYTHON%\\python.exe -m pip install pywin32 WMI"
2122
- cmd: "%PYTHON%\\python.exe %PYTHON%\\Scripts\\pywin32_postinstall.py -install"

config/appveyor/runtests.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ export CFLAGS="-I/usr/local/include -I/usr/local/opt/[email protected]/include ${CFLAG
66
export LDFLAGS="-L/usr/local/lib -L/usr/local/opt/[email protected]/lib ${LDFLAGS}";
77
export TOX_TESTENV_PASSENV="CFLAGS LDFLAGS";
88

9-
# Set the following environment variables to ensure tox can find Python 3.8.
10-
export PATH="/usr/local/opt/python@3.8/bin:${PATH}";
9+
# Set the following environment variables to ensure tox can find Python 3.9.
10+
export PATH="/usr/local/opt/python@3.9/bin:${PATH}";
1111

12-
tox -e py38
12+
tox -e py39

config/dpkg/changelog

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
plaso (20201219-1) unstable; urgency=low
1+
plaso (20201228-1) unstable; urgency=low
22

33
* Auto-generated
44

5-
-- Log2Timeline maintainers <[email protected]> Sat, 19 Dec 2020 18:05:12 +0100
5+
-- Log2Timeline maintainers <[email protected]> Mon, 28 Dec 2020 07:33:32 +0100

config/linux/gift_copr_install.sh

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -135,18 +135,18 @@ DEBUG_DEPENDENCIES="libbde-debuginfo
135135
libvslvm-debuginfo
136136
libvslvm-python3-debuginfo";
137137

138-
sudo dnf install dnf-plugins-core
139-
sudo dnf copr -y enable @gift/dev
140-
sudo dnf install -y ${PYTHON3_DEPENDENCIES}
138+
sudo dnf install -q dnf-plugins-core
139+
sudo dnf copr -q -y enable @gift/dev
140+
sudo dnf install -q -y ${PYTHON3_DEPENDENCIES}
141141

142142
if [[ "$*" =~ "include-debug" ]]; then
143-
sudo dnf install -y ${DEBUG_DEPENDENCIES}
143+
sudo dnf install -q -y ${DEBUG_DEPENDENCIES}
144144
fi
145145

146146
if [[ "$*" =~ "include-development" ]]; then
147-
sudo dnf install -y ${DEVELOPMENT_DEPENDENCIES}
147+
sudo dnf install -q -y ${DEVELOPMENT_DEPENDENCIES}
148148
fi
149149

150150
if [[ "$*" =~ "include-test" ]]; then
151-
sudo dnf install -y ${TEST_DEPENDENCIES}
151+
sudo dnf install -q -y ${TEST_DEPENDENCIES}
152152
fi

config/linux/ubuntu_install_plaso.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,19 +144,19 @@ DEBUG_DEPENDENCIES="libbde-dbg
144144

145145
sudo add-apt-repository ppa:gift/${GIFT_PPA_TRACK} -y
146146
sudo apt-get update -q
147-
sudo apt-get install -y ${PYTHON_DEPENDENCIES}
147+
sudo apt-get install -q -y ${PYTHON_DEPENDENCIES}
148148

149149
if [[ "$*" =~ "include-debug" ]];
150150
then
151-
sudo apt-get install -y ${DEBUG_DEPENDENCIES}
151+
sudo apt-get install -q -y ${DEBUG_DEPENDENCIES}
152152
fi
153153

154154
if [[ "$*" =~ "include-development" ]];
155155
then
156-
sudo apt-get install -y ${DEVELOPMENT_DEPENDENCIES}
156+
sudo apt-get install -q -y ${DEVELOPMENT_DEPENDENCIES}
157157
fi
158158

159159
if [[ "$*" =~ "include-test" ]];
160160
then
161-
sudo apt-get install -y ${TEST_DEPENDENCIES}
161+
sudo apt-get install -q -y ${TEST_DEPENDENCIES}
162162
fi

docs/sources/api/plaso.filters.rst

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,6 @@ plaso.filters.filters module
4444
:undoc-members:
4545
:show-inheritance:
4646

47-
plaso.filters.interface module
48-
------------------------------
49-
50-
.. automodule:: plaso.filters.interface
51-
:members:
52-
:undoc-members:
53-
:show-inheritance:
54-
5547
plaso.filters.parser\_filter module
5648
-----------------------------------
5749

docs/sources/api/plaso.formatters.rst

Lines changed: 0 additions & 48 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,6 @@ plaso.formatters package
44
Submodules
55
----------
66

7-
plaso.formatters.asl module
8-
---------------------------
9-
10-
.. automodule:: plaso.formatters.asl
11-
:members:
12-
:undoc-members:
13-
:show-inheritance:
14-
157
plaso.formatters.chrome module
168
------------------------------
179

@@ -52,14 +44,6 @@ plaso.formatters.firefox module
5244
:undoc-members:
5345
:show-inheritance:
5446

55-
plaso.formatters.gdrive module
56-
------------------------------
57-
58-
.. automodule:: plaso.formatters.gdrive
59-
:members:
60-
:undoc-members:
61-
:show-inheritance:
62-
6347
plaso.formatters.interface module
6448
---------------------------------
6549

@@ -84,14 +68,6 @@ plaso.formatters.manager module
8468
:undoc-members:
8569
:show-inheritance:
8670

87-
plaso.formatters.mediator module
88-
--------------------------------
89-
90-
.. automodule:: plaso.formatters.mediator
91-
:members:
92-
:undoc-members:
93-
:show-inheritance:
94-
9571
plaso.formatters.msiecf module
9672
------------------------------
9773

@@ -100,22 +76,6 @@ plaso.formatters.msiecf module
10076
:undoc-members:
10177
:show-inheritance:
10278

103-
plaso.formatters.olecf module
104-
-----------------------------
105-
106-
.. automodule:: plaso.formatters.olecf
107-
:members:
108-
:undoc-members:
109-
:show-inheritance:
110-
111-
plaso.formatters.safari\_cookies module
112-
---------------------------------------
113-
114-
.. automodule:: plaso.formatters.safari_cookies
115-
:members:
116-
:undoc-members:
117-
:show-inheritance:
118-
11979
plaso.formatters.shell\_items module
12080
------------------------------------
12181

@@ -124,14 +84,6 @@ plaso.formatters.shell\_items module
12484
:undoc-members:
12585
:show-inheritance:
12686

127-
plaso.formatters.tango\_android module
128-
--------------------------------------
129-
130-
.. automodule:: plaso.formatters.tango_android
131-
:members:
132-
:undoc-members:
133-
:show-inheritance:
134-
13587
plaso.formatters.winevt module
13688
------------------------------
13789

docs/sources/api/plaso.parsers.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -581,10 +581,10 @@ plaso.parsers.winprefetch module
581581
:undoc-members:
582582
:show-inheritance:
583583

584-
plaso.parsers.winreg module
585-
---------------------------
584+
plaso.parsers.winreg\_parser module
585+
-----------------------------------
586586

587-
.. automodule:: plaso.parsers.winreg
587+
.. automodule:: plaso.parsers.winreg_parser
588588
:members:
589589
:undoc-members:
590590
:show-inheritance:

plaso/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
from __future__ import unicode_literals
1010

11-
__version__ = '20201219'
11+
__version__ = '20201228'

0 commit comments

Comments
 (0)