Skip to content

Commit db37a33

Browse files
authored
Merge pull request #51 from olback/0.2.1
doc updates
2 parents 07773fb + f59efc6 commit db37a33

File tree

7 files changed

+610
-565
lines changed

7 files changed

+610
-565
lines changed

.circleci/deploy/deploy.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,13 +22,11 @@ const gh = {
2222

2323
const files = [
2424
// Linux files
25-
new File('./target/x86_64-unknown-linux-gnu/release/library-loader-cli'),
26-
new File('./target/x86_64-unknown-linux-gnu/release/library-loader-cli.sha256'),
2725
new File('./target/x86_64-unknown-linux-gnu/release/library-loader-gui'),
2826
new File('./target/x86_64-unknown-linux-gnu/release/library-loader-gui.sha256')
2927
];
3028

31-
let cargoToml = fs.readFileSync('Cargo.toml', 'utf8').toString().split('\n');
29+
let cargoToml = fs.readFileSync('ll-gui/Cargo.toml', 'utf8').toString().split('\n');
3230
let currentVersion = cargoToml.filter(l => l.includes('version = '))[0].split(' = ')[1].replace(/\"/g, '');
3331

3432
(async () => {

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
1-
# 0.2.0
1+
# 0.2.1
2+
* Updated 'Update Instructions'
3+
* Added Docker build instructions(thanks @4c0n)
4+
* Fixed typo (thanks @4c0n)
5+
* Hopefully fixed automatic releases
6+
* Fix version missmatch in `ll-core`
7+
8+
## 0.2.0
29
* Added GUI version
310
* Major refactor
411

0 commit comments

Comments
 (0)