Skip to content

Commit

Permalink
0.9.492
Browse files Browse the repository at this point in the history
  • Loading branch information
RobbyV2 committed Nov 22, 2024
1 parent e9313d6 commit d71ae14
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,16 @@ jobs:

steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0

- name: Create Git Tag
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "actions@github.com"
git tag -a "v${{ github.event.head_commit.message }}" -m "Release v${{ github.event.head_commit.message }}"
git push origin "v${{ github.event.head_commit.message }}"
- name: Download Windows Artifacts
uses: actions/download-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[package]
name = "fplc"
version = "0.9.491"
version = "0.9.492"
edition = "2021"
description = "A pseudolang interpreter written in Rust"

Expand Down
4 changes: 2 additions & 2 deletions installer/pseudolang.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

!define MUI_ICON "Pseudolang-Logo.ico"

Name "PseudoLang Installer v0.9.491"
Name "PseudoLang Installer v0.9.492"
InstallDir "$PROGRAMFILES\PseudoLang\"
OutFile "../release/installer/pseudolang-setup-x64.exe"
BrandingText "(c) 2024 PseudoLang Software Foundation"
Expand Down Expand Up @@ -33,7 +33,7 @@ Section ""
WriteRegStr HKLM "SYSTEM\CurrentControlSet\Control\Session Manager\Environment" "Path" "$INSTDIR;$R0"

WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Pseudolang" "DisplayName" "Pseudolang"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Pseudolang" "DisplayVersion" "0.9.491"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Pseudolang" "DisplayVersion" "0.9.492"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Pseudolang" "Publisher" "Pseudolang Software Foundation"
WriteRegStr HKLM "Software\Microsoft\Windows\CurrentVersion\Uninstall\Pseudolang" "DisplayIcon" "$INSTDIR\Pseudolang-Logo.ico"

Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<div align="center">
<p>
<img src="https://github.com/PseudoLang-Software-Foundation/Pseudolang/actions/workflows/build.yml/badge.svg" alt="Build and Test Pseudolang">
<img src="https://img.shields.io/badge/Version-0.9.491-green" alt="Version">
<img src="https://img.shields.io/badge/Version-0.9.492-green" alt="Version">
<a href="https://nightly.link/PseudoLang-Software-Foundation/Pseudolang/workflows/build/main"><img src="https://img.shields.io/badge/Nightly-Releases-purple" alt="Nightly Releases"></a>
</p>
</div>
Expand Down
2 changes: 0 additions & 2 deletions src/interpreter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -255,10 +255,8 @@ fn evaluate_node(
AstNode::DisplayInline(expr) => {
let value = evaluate_node(expr, Rc::clone(&env), debug)?;
let output = value_to_string(&value);
// Print the output
print!("{}", output);
stdout().flush().map_err(|e| e.to_string())?;
// Accumulate the output
env.borrow_mut().output.push_str(&output);
Ok(Value::Unit)
}
Expand Down

0 comments on commit d71ae14

Please sign in to comment.