Skip to content

Commit 0d62d1d

Browse files
committed
slide stub
1 parent d680cc6 commit 0d62d1d

11 files changed

+848
-1
lines changed

Makefile

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
release.txt:
2+
links -dump https://go.dev/doc/devel/release > $@

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# State of Go in 2022
22

3-
> What changed in the past few years?
3+
> What's new (since Go [1.14](https://go.dev/doc/devel/release#go1.14))?
44
55
Talk at [Leipzig Software Craft Meetup](https://www.meetup.com/LE-software-craft-community/), date and time: TBD.
66

Slides.md

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# State of Go in 2022
2+
3+
> What's new (since Go [1.14](https://go.dev/doc/devel/release#go1.14))?
4+
5+
Talk at [Leipzig Software Craft
6+
Meetup](https://www.meetup.com/LE-software-craft-community/), date and time:
7+
TBD.
8+
9+
* Andreas Linz
10+
* Martin Czygan (https://golangleipzigs.space)
11+
12+
## Change to the language
13+
14+
![](static/changes-combined.png)
15+
16+
* not that much to see here; thanks! any questions?
17+

release.txt

+815
Large diffs are not rendered by default.

static/Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
CHANGES_PNG := \
2+
changes1.14.png \
3+
changes1.15.png \
4+
changes1.16.png \
5+
changes1.17.png \
6+
changes1.18.png \
7+
8+
changes-combined.png: $(CHANGES_PNG)
9+
convert $^ -append $@
10+
11+
.PHONY: clean
12+
clean:
13+
rm -f changes-combined.png

static/changes-combined.png

501 KB
Loading

static/changes1.14.png

48.4 KB
Loading

static/changes1.15.png

14.8 KB
Loading

static/changes1.16.png

15 KB
Loading

static/changes1.17.png

128 KB
Loading

static/changes1.18.png

294 KB
Loading

0 commit comments

Comments
 (0)