Skip to content

Commit

Permalink
chore: version bump (#76)
Browse files Browse the repository at this point in the history
Signed-off-by: shivamsouravjha <2019145@iiitdmj.ac.in>
  • Loading branch information
shivamsouravjha authored Oct 10, 2024
1 parent 5aea779 commit 52f6637
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,4 +73,8 @@ First Release for Vs Code Extension.
- Added support for a chatbot to provide additional prompts.
- Improved Keploy binary update experience.
- Enhanced signup/sign-in experience for users.
- Added support for new imports and installations of new libraries.
- Added support for new imports and installations of new libraries.

## [1.0.17]
- Enhanced path detection of test in Javascript, Python and Go.
- Increase file size limit to 1MB.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "keployio",
"displayName": "Keploy",
"description": "Streamline testing with the power of Keploy, directly in your favorite IDE.",
"version": "1.0.16",
"version": "1.0.17",
"publisher": "Keploy",
"icon": "media/logo.png",
"pricing": "Free",
Expand Down
2 changes: 1 addition & 1 deletion src/Utg.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ async function Utg(context: vscode.ExtensionContext , additional_prompts?:string
`import os\n\n` +
`parent_dir = os.path.abspath(os.path.join(os.path.dirname(__file__), '${ParentDir}'))\n\n` +
`sys.path.insert(0, parent_dir)\n\n`+
`import ${MainFileName}\n\n`+
`import ${MainFileName} # checking coverage for file - do not remove\n\n`+
`def test_dummy():\n` +
` assert True\n`;

Expand Down

0 comments on commit 52f6637

Please sign in to comment.