Skip to content

Commit a2365a5

Browse files
committed
Reset all changes before public unveiling
0 parents  commit a2365a5

9 files changed

+842
-0
lines changed

.gitignore

+270
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,270 @@
1+
2+
# Created by https://www.gitignore.io/api/linux,macos,python,windows,intellij
3+
# Edit at https://www.gitignore.io/?templates=linux,macos,python,windows,intellij
4+
5+
### Intellij ###
6+
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and WebStorm
7+
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
8+
9+
# User-specific stuff
10+
.idea/**/workspace.xml
11+
.idea/**/tasks.xml
12+
.idea/**/usage.statistics.xml
13+
.idea/**/dictionaries
14+
.idea/**/shelf
15+
16+
# Generated files
17+
.idea/**/contentModel.xml
18+
19+
# Sensitive or high-churn files
20+
.idea/**/dataSources/
21+
.idea/**/dataSources.ids
22+
.idea/**/dataSources.local.xml
23+
.idea/**/sqlDataSources.xml
24+
.idea/**/dynamic.xml
25+
.idea/**/uiDesigner.xml
26+
.idea/**/dbnavigator.xml
27+
28+
# Gradle
29+
.idea/**/gradle.xml
30+
.idea/**/libraries
31+
32+
# Gradle and Maven with auto-import
33+
# When using Gradle or Maven with auto-import, you should exclude module files,
34+
# since they will be recreated, and may cause churn. Uncomment if using
35+
# auto-import.
36+
# .idea/modules.xml
37+
# .idea/*.iml
38+
# .idea/modules
39+
# *.iml
40+
# *.ipr
41+
42+
# CMake
43+
cmake-build-*/
44+
45+
# Mongo Explorer plugin
46+
.idea/**/mongoSettings.xml
47+
48+
# File-based project format
49+
*.iws
50+
51+
# IntelliJ
52+
out/
53+
54+
# mpeltonen/sbt-idea plugin
55+
.idea_modules/
56+
57+
# JIRA plugin
58+
atlassian-ide-plugin.xml
59+
60+
# Cursive Clojure plugin
61+
.idea/replstate.xml
62+
63+
# Crashlytics plugin (for Android Studio and IntelliJ)
64+
com_crashlytics_export_strings.xml
65+
crashlytics.properties
66+
crashlytics-build.properties
67+
fabric.properties
68+
69+
# Editor-based Rest Client
70+
.idea/httpRequests
71+
72+
# Android studio 3.1+ serialized cache file
73+
.idea/caches/build_file_checksums.ser
74+
75+
### Intellij Patch ###
76+
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
77+
78+
# *.iml
79+
# modules.xml
80+
# .idea/misc.xml
81+
# *.ipr
82+
83+
# Sonarlint plugin
84+
.idea/**/sonarlint/
85+
86+
# SonarQube Plugin
87+
.idea/**/sonarIssues.xml
88+
89+
# Markdown Navigator plugin
90+
.idea/**/markdown-navigator.xml
91+
.idea/**/markdown-navigator/
92+
93+
### Linux ###
94+
*~
95+
96+
# temporary files which can be created if a process still has a handle open of a deleted file
97+
.fuse_hidden*
98+
99+
# KDE directory preferences
100+
.directory
101+
102+
# Linux trash folder which might appear on any partition or disk
103+
.Trash-*
104+
105+
# .nfs files are created when an open file is removed but is still being accessed
106+
.nfs*
107+
108+
### macOS ###
109+
# General
110+
.DS_Store
111+
.AppleDouble
112+
.LSOverride
113+
114+
# Icon must end with two \r
115+
Icon
116+
117+
# Thumbnails
118+
._*
119+
120+
# Files that might appear in the root of a volume
121+
.DocumentRevisions-V100
122+
.fseventsd
123+
.Spotlight-V100
124+
.TemporaryItems
125+
.Trashes
126+
.VolumeIcon.icns
127+
.com.apple.timemachine.donotpresent
128+
129+
# Directories potentially created on remote AFP share
130+
.AppleDB
131+
.AppleDesktop
132+
Network Trash Folder
133+
Temporary Items
134+
.apdisk
135+
136+
### Python ###
137+
# Byte-compiled / optimized / DLL files
138+
__pycache__/
139+
*.py[cod]
140+
*$py.class
141+
142+
# C extensions
143+
*.so
144+
145+
# Distribution / packaging
146+
.Python
147+
build/
148+
develop-eggs/
149+
dist/
150+
downloads/
151+
eggs/
152+
.eggs/
153+
lib/
154+
lib64/
155+
parts/
156+
sdist/
157+
var/
158+
wheels/
159+
pip-wheel-metadata/
160+
share/python-wheels/
161+
*.egg-info/
162+
.installed.cfg
163+
*.egg
164+
MANIFEST
165+
166+
# PyInstaller
167+
# Usually these files are written by a python script from a template
168+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
169+
*.manifest
170+
*.spec
171+
172+
# Installer logs
173+
pip-log.txt
174+
pip-delete-this-directory.txt
175+
176+
# Unit test / coverage reports
177+
htmlcov/
178+
.tox/
179+
.nox/
180+
.coverage
181+
.coverage.*
182+
.cache
183+
nosetests.xml
184+
coverage.xml
185+
*.cover
186+
.hypothesis/
187+
.pytest_cache/
188+
189+
# Translations
190+
*.mo
191+
*.pot
192+
193+
# Scrapy stuff:
194+
.scrapy
195+
196+
# Sphinx documentation
197+
docs/_build/
198+
199+
# PyBuilder
200+
target/
201+
202+
# pyenv
203+
.python-version
204+
205+
# pipenv
206+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
207+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
208+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
209+
# install all needed dependencies.
210+
#Pipfile.lock
211+
212+
# celery beat schedule file
213+
celerybeat-schedule
214+
215+
# SageMath parsed files
216+
*.sage.py
217+
218+
# Spyder project settings
219+
.spyderproject
220+
.spyproject
221+
222+
# Rope project settings
223+
.ropeproject
224+
225+
# Mr Developer
226+
.mr.developer.cfg
227+
.project
228+
.pydevproject
229+
230+
# mkdocs documentation
231+
/site
232+
233+
# mypy
234+
.mypy_cache/
235+
.dmypy.json
236+
dmypy.json
237+
238+
# Pyre type checker
239+
.pyre/
240+
241+
### Windows ###
242+
# Windows thumbnail cache files
243+
Thumbs.db
244+
Thumbs.db:encryptable
245+
ehthumbs.db
246+
ehthumbs_vista.db
247+
248+
# Dump file
249+
*.stackdump
250+
251+
# Folder config file
252+
[Dd]esktop.ini
253+
254+
# Recycle Bin used on file shares
255+
$RECYCLE.BIN/
256+
257+
# Windows Installer files
258+
*.cab
259+
*.msi
260+
*.msix
261+
*.msm
262+
*.msp
263+
264+
# Windows shortcuts
265+
*.lnk
266+
267+
# End of https://www.gitignore.io/api/linux,macos,python,windows,intellij
268+
269+
# Idk
270+
*.profraw

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6+
7+
## [0.0.2] - 2020-04-14
8+
### Added
9+
- Prettier printing of `gdbundle list` command
10+
- Added `load_module` to allow users to explicitly load a gdbundle plugin that
11+
doesn't being with `gdbundle_`
12+
13+
### Changed
14+
- Updated README.md to match the announcement post
15+
16+
## [0.0.1] - 2020-04-14
17+
18+
- Initial Release to the world

0 commit comments

Comments
 (0)