Skip to content

Commit

Permalink
Fix regression creating linked copies
Browse files Browse the repository at this point in the history
- Bump to 4.0.26
  • Loading branch information
smathot committed Apr 25, 2024
1 parent 288b869 commit c4950cb
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libopensesame/metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
from distutils.version import StrictVersion
import sys

__version__ = '4.0.25'
__version__ = '4.0.26'
strict_version = StrictVersion(__version__)
# The version without the prerelease (if any): e.g. 3.0.0
main_version = '.'.join([str(i) for i in strict_version.version])
Expand Down
2 changes: 1 addition & 1 deletion libqtopensesame/widgets/tree_item_item.py
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,7 @@ def copy_linked(self):
import json

data = {
'type': 'item-snippet',
'type': 'item-existing',
'item-name': self.item.name,
'item-type': self.item.item_type,
'move': False,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "opensesame-core"
version = "4.0.25"
version = "4.0.26"
description = "A graphical experiment builder for the social sciences"
authors = ["Sebastiaan Mathôt <[email protected]>"]
readme = "readme.md"
Expand Down

0 comments on commit c4950cb

Please sign in to comment.