Skip to content

Commit

Permalink
Update to 1.7.0-rc
Browse files Browse the repository at this point in the history
  • Loading branch information
ricaun committed Dec 3, 2024
1 parent 4b5027b commit b5e0aa2
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Build/IBuildCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public interface IBuildCommand : IBuildConsole
.ForEach(file =>
{
Serilog.Log.Information($"Copy nupkg: {file} to {releaseDirectory}");
FileSystemTasks.CopyFileToDirectory(file, releaseDirectory, FileExistsPolicy.OverwriteIfNewer);
AbsolutePathExtensions.CopyToDirectory(file, releaseDirectory, ExistsPolicy.FileOverwriteIfNewer);
});

});
Expand Down
4 changes: 2 additions & 2 deletions Build/IBuildConsole.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ public interface IBuildConsole : IHazExample, IRevitPackageBuilder
{
var resourcesDirectory = project.Directory / "Resources";
Serilog.Log.Information($"Copy Bundle: {file} to {resourcesDirectory}");
FileSystemTasks.CopyFileToDirectory(file, resourcesDirectory, FileExistsPolicy.OverwriteIfNewer);
AbsolutePathExtensions.CopyToDirectory(file, resourcesDirectory, ExistsPolicy.FileOverwriteIfNewer);
});

Solution.BuildProject(project, (project) =>
Expand Down Expand Up @@ -64,7 +64,7 @@ public interface IBuildConsole : IHazExample, IRevitPackageBuilder
.ForEach(file =>
{
Serilog.Log.Information($"Copy nupkg: {file} to {releaseDirectory}");
FileSystemTasks.CopyFileToDirectory(file, releaseDirectory, FileExistsPolicy.OverwriteIfNewer);
AbsolutePathExtensions.CopyToDirectory(file, releaseDirectory, ExistsPolicy.FileOverwriteIfNewer);
});

});
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [1.6.1] / 2024-11-02
## [1.7.0] / 2024-11-02 - 2024-12-03
### Features
- Support `IRevitTask` functions as parameters.
### Application
Expand All @@ -14,6 +14,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Tests
- Update `TestsRevitTask` with `RevitTaskBase` using base parameter.
- Add `TestsFuncTaskParameters` to test each parameter function.
### Build
- Update `FileSystemTasks.CopyFileToDirectory` to `AbsolutePathExtensions.CopyToDirectory`.

## [1.6.0] / 2024-09-25 - 2024-10-06
### Features
Expand Down Expand Up @@ -524,7 +526,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
- [x] TestsFail

[vNext]: ../../compare/1.0.0...HEAD
[1.6.1]: ../../compare/1.6.0...1.6.1
[1.7.0]: ../../compare/1.6.0...1.7.0
[1.6.0]: ../../compare/1.5.0...1.6.0
[1.5.0]: ../../compare/1.4.1...1.5.0
[1.4.1]: ../../compare/1.4.0...1.4.1
Expand Down
2 changes: 1 addition & 1 deletion Directory.Build.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>1.6.1-beta</Version>
<Version>1.7.0-rc</Version>
</PropertyGroup>
</Project>
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 comments on commit b5e0aa2

Please sign in to comment.