Skip to content

Commit 95a18a8

Browse files
authored
Merge pull request #128 from guzba/master
0.6.5, github actions nimble cache back, lock typography and pixie dep
2 parents 6276e47 + bdea258 commit 95a18a8

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,18 @@ jobs:
1414
path: ~/.choosenim
1515
key: ${{ runner.os }}-choosenim-stable
1616

17+
- name: Cache nimble
18+
id: cache-nimble
19+
uses: actions/cache@v1
20+
with:
21+
path: ~/.nimble
22+
key: ${{ runner.os }}-nimble-stable
23+
1724
- uses: jiro4989/setup-nim-action@v1
1825

1926
- name: Install GUI
2027
run: |
2128
sudo apt update
2229
sudo apt install -y build-essential libalut-dev libasound2-dev libc6-dev libgl1-mesa-dev libglu1-mesa-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev mesa-utils pkg-config xorg-dev xvfb
23-
- run: nimble install -y --verbose
30+
- run: nimble install -y
2431
- run: nim c -r tests/run.nim --compile --native --js

fidget.nimble

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Package
22

3-
version = "0.6.4"
3+
version = "0.6.5"
44
author = "treeform"
55
description = "Fidget - UI Library"
66
license = "MIT"
@@ -10,8 +10,8 @@ srcDir = "src"
1010

1111
requires "nim >= 1.0.0"
1212
requires "chroma >= 0.1.3"
13-
requires "typography >= 0.7.2"
14-
requires "pixie >= 0.0.11"
13+
requires "typography 0.7.3"
14+
requires "pixie 0.0.15"
1515
requires "vmath >= 0.4.0"
1616
requires "print >= 0.1.0"
1717
requires "opengl >= 1.2.3"

0 commit comments

Comments
 (0)