Skip to content

Commit 99fa25e

Browse files
committed
bump version to 0.1.0
1 parent 420fafd commit 99fa25e

File tree

3 files changed

+28
-4
lines changed

3 files changed

+28
-4
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ __pycache__/
88
materialdatabase.egg-info/
99
tests/temp/
1010
.eggs/
11+
build/
12+
dist/
1113

1214
# Files
1315

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
8+
## [Unreleased]
9+
10+
11+
## [0.1.0] - 2022-12-15
12+
### Initial functionality
13+
* Materials: N95, N97, N49
14+
* Manufacturer datasheets
15+
* Measurement data (measured at Paderborn University / LEA department)
16+
* Interfaces to FEMMT
17+
18+
19+
[Unreleased]: https://github.com/upb-lea/materialdatabase/compare/0.1.0...HEAD
20+
[0.1.0]: https://github.com/upb-lea/materialdatabase/compare/0.1.0...0.1.0
21+
22+

setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515

1616

1717

18-
# with open('CHANGELOG.md') as history_file:
19-
# history = history_file.read()
18+
with open('CHANGELOG.md') as history_file:
19+
history = history_file.read()
2020

2121

2222

@@ -76,7 +76,7 @@
7676
"Documentation": "",
7777
"Source Code": "https://github.com/upb-lea/materialdatabase",
7878
},
79-
version='0.0.0',
79+
version='0.1.0',
8080
zip_safe=False,
81-
#data_files=[('', ['CHANGELOG.md'])]
81+
data_files=[('', ['CHANGELOG.md'])]
8282
)

0 commit comments

Comments
 (0)