Skip to content

Commit

Permalink
merge develop to master (#99)
Browse files Browse the repository at this point in the history
  • Loading branch information
namastey committed Mar 24, 2024
2 parents 724ac1e + 0452d15 commit 5359728
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
[//]: <> (The format is based on Keep a Changelog keepachangelog.com/)
[//]: <> (and this project adheres to Semantic Versioning semver.org/)

### [2024.35.0] - On 2024.03.24

#### Fixed
- Issue in update


### [2024.34.0] - On 2024.03.24

#### Added
Expand Down
2 changes: 1 addition & 1 deletion nrobo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
@email: [email protected]
"""

__version__ = '2024.34.0'
__version__ = '2024.35.0'

# install rich library
import os
Expand Down
7 changes: 5 additions & 2 deletions nrobo/cli/install/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,12 @@ def transfer_files_to_host_project() -> None:
if host_version <= stop_auto_silent_update_version:
# Re-install
pass
elif missing_user_files_on_production():
pass
else:
if not (NP.EXEC_DIR / NP.REQUIREMENTS_TXT_FILE).exists():
"""Create if not exist"""
copy_file(NP.NROBO_DIR / NP.FRAMEWORK / NP.REQUIREMENTS_TXT_FILE,
NP.EXEC_DIR / NP.REQUIREMENTS_TXT_FILE)

return # Return from installation if nRoBo is already installed on HOST system! SMART! RIGHT! :)

# nRoBo was not found on HOST machine.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ build-backend = "setuptools.build_meta"
# Project details
[project]
name = "nrobo"
version = "2024.34.0"
version = "2024.35.0"
authors = [{name="Panchdev Singh Chauhan", email="[email protected]"}]
maintainers = [{name="Panchdev Singh Chauhan", email="[email protected]"}]
description = "Powerful! Yet, Easy to USE! Automated Testing Framework"
Expand Down
2 changes: 1 addition & 1 deletion versions/prod.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 2024.34.0
version: 2024.35.0
2 changes: 1 addition & 1 deletion versions/test.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 2024.34.0
version: 2024.35.0

0 comments on commit 5359728

Please sign in to comment.