Skip to content

Commit 52f02cd

Browse files
committed
Preparing for 1.0.1
1 parent 0df6b20 commit 52f02cd

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

data/com.jeffser.Alpaca.metainfo.xml.in

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,16 @@
7878
<url type="contribute">https://github.com/Jeffser/Alpaca/discussions/154</url>
7979
<url type="vcs-browser">https://github.com/Jeffser/Alpaca</url>
8080
<releases>
81+
<release version="1.0.1" date="2024-06-23">
82+
<url type="details">https://github.com/Jeffser/Alpaca/releases/tag/1.0.1</url>
83+
<description>
84+
<p>Fixes</p>
85+
<ul>
86+
<li>Models with '-' in their names didn't work properly, this is now fixed</li>
87+
<li>Better connection check for Ollama</li>
88+
</ul>
89+
</description>
90+
</release>
8191
<release version="1.0.0" date="2024-07-22">
8292
<url type="details">https://github.com/Jeffser/Alpaca/releases/tag/1.0.0</url>
8393
<description>

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
project('Alpaca', 'c',
2-
version: '1.0.0',
2+
version: '1.0.1',
33
meson_version: '>= 0.62.0',
44
default_options: [ 'warning_level=2', 'werror=false', ],
55
)

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ def __init__(self):
4040
self.create_action('quit', lambda *_: self.quit(), ['<primary>q'])
4141
self.create_action('preferences', lambda *_: AlpacaWindow.show_preferences_dialog(self.props.active_window), ['<primary>p'])
4242
self.create_action('about', self.on_about_action)
43-
self.version = '1.0.0'
43+
self.version = '1.0.1'
4444

4545
def do_activate(self):
4646
win = self.props.active_window

0 commit comments

Comments
 (0)