Skip to content

Commit f600e7c

Browse files
committed
MNT bump to 3.1.0
1 parent 8234484 commit f600e7c

File tree

6 files changed

+9
-18
lines changed

6 files changed

+9
-18
lines changed

Diff for: CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
All notable changes to scimodom will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/), and this project adheres to [Semantic Versioning](http://semver.org/).
55

6-
## [Release candidate] - started 2024-09-25
6+
## [Release candidate] - started 2025-01
7+
8+
## [3.1.0] - 2025-01-08
79

810
### Added
911

@@ -19,6 +21,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/), and this
1921

2022
### Fixed
2123

24+
- URL constructor
2225
- Gene cache management
2326
- EUF toggle in Comparison
2427
- SMID/EUFID length validation

Diff for: client/package-lock.json

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: client/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "client",
3-
"version": "3.0.0",
3+
"version": "3.1.0",
44
"private": true,
55
"scripts": {
66
"dev": "vite",

Diff for: client/src/components/documentation/DocAbout.vue

-12
Original file line numberDiff line numberDiff line change
@@ -114,17 +114,5 @@ import img2 from '@/assets/images/docs/about2.png'
114114
>server documentation</a
115115
>.
116116
</p>
117-
<p class="indent-4 text-xl leading-relaxed mt-4 mb-2">
118-
Check out the latest features
119-
<RouterLink class="pl-2 animate-pulse" :to="{ name: 'roadmap' }">
120-
<!-- <a class="pl-2 animate-pulse" href="https://www.trr319-rmap.de" target="_blank" rel="noopener noreferrer"> -->
121-
<Button
122-
icon="pi pi-arrow-right"
123-
size="small"
124-
label="Learn more about our development plan for 2025"
125-
rounded
126-
/>
127-
</RouterLink>
128-
</p>
129117
</div>
130118
</template>

Diff for: client/src/components/home/HomeView.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import HomeBanner from '@/components/home/HomeBanner.vue'
33
import HomeViews from '@/components/home/HomeViews.vue'
44
import HomeIntro from '@/components/home/HomeIntro.vue'
55
import HomeFeatures from '@/components/home/HomeFeatures.vue'
6-
import HomeRoadmap from '@/components/home/HomeRoadmap.vue'
6+
// import HomeRoadmap from '@/components/home/HomeRoadmap.vue'
77
import HomeRelease from '@/components/home/HomeRelease.vue'
88
import DefaultLayout from '@/components/layout/DefaultLayout.vue'
99
</script>
@@ -15,6 +15,6 @@ import DefaultLayout from '@/components/layout/DefaultLayout.vue'
1515
<HomeIntro />
1616
<HomeFeatures />
1717
<HomeRelease />
18-
<HomeRoadmap />
18+
<!-- <HomeRoadmap /> -->
1919
</DefaultLayout>
2020
</template>

Diff for: server/src/scimodom/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
__version_info__ = ("3", "0", "0")
1+
__version_info__ = ("3", "1", "0")
22
__version__ = ".".join(__version_info__)

0 commit comments

Comments
 (0)