@codemuster/win32-x64 0.2.8 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md ADDED
@@ -0,0 +1,43 @@
1
+ # Changelog
2
+
3
+ User-visible changes by released version. Add upcoming changes under Unreleased;
4
+ move them to a dated version heading before publishing. Historical entries below
5
+ start with 0.2.8.
6
+
7
+ ## 0.3.0 - 2026-09-19
8
+
9
+ - Show the intervening release notes after `codemuster update`.
10
+ - Check for a newer version on every normal command and report the result without
11
+ changing command output or stopping work when the registry is unavailable.
12
+ - Include this changelog in the launcher and every platform package.
13
+ - Preview the worker limit, provider, model and thinking level before `run`, `verify`
14
+ or `fix`. Interactive terminals wait ten seconds; Enter starts immediately and
15
+ Escape or Ctrl+C cancels. CI and redirected commands start without waiting.
16
+ - Add `intelligent-config` to inspect repository context with an AI agent and apply
17
+ validated exclusions, scoped lenses and detected test setup. Preserve existing
18
+ custom settings and keep an exact backup before replacing the config.
19
+
20
+ Upgrade from 0.2.9 or earlier with `npm install -g codemuster@0.3.0` to
21
+ install the new launcher. Older launchers update only the native binary, so their
22
+ `codemuster update` cannot add release-note or per-command update notices.
23
+
24
+ ## 0.2.9 - 2026-09-19
25
+
26
+ - Exclude non-code documents, data, configuration and database files from AI review,
27
+ including Markdown, text, JSON, YAML, XML, CSV, Office documents and SQLite files.
28
+ Mapper metadata and ecosystem dependency audits retain their required inputs.
29
+ - Mark oversized packs as skipped once and continue other work. Skips retain a
30
+ reason, consume no agent attempts or retries, and never count as reviewed.
31
+ - Show skipped work in status and reports. Rescan or use `run --force` to retry it.
32
+ - Upgrade the ledger to schema 7 while preserving audit history. Older CLIs cannot
33
+ open this schema. Run `codemuster scan` after upgrading to refresh exclusions.
34
+
35
+ ## 0.2.8 - 2026-09-15
36
+
37
+ - Add settings-driven proactive plugin workflows for Claude and Codex, with shared
38
+ setup, skills and hooks.
39
+ - Isolate fix workers, enforce repair scope, preserve dirty work through explicit
40
+ stash handling, and validate fixes before recording success.
41
+ - Add opt-in static usage assessments and browser-backed user-experience reviews.
42
+ - Prevent dead-code scans from failing on wall-clock regex timeouts.
43
+ - Support exact CLI version pins and separate update caches by OS and architecture.
Binary file
@@ -70,7 +70,7 @@
70
70
  <member name="T:CodeMuster.Application.Config">
71
71
  <summary>The committed per-repo configuration (D04).</summary>
72
72
  <param name="Lenses">Named lenses; at least one is expected.</param>
73
- <param name="SliceTokenBudget">Approximate tokens of code a slice pack may show in full before farther members shrink to signatures (D07).</param>
73
+ <param name="SliceTokenBudget">Approximate tokens of code shown in full: oversized whole-file packs are skipped, and farther slice members shrink to signatures (D07).</param>
74
74
  <param name="ResolutionThreshold">Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</param>
75
75
  <param name="Verify">Whether every recorded finding gets a verify unit, costing about one more agent call per finding (D27, D28).</param>
76
76
  <param name="Vulnerabilities">Whether <c>scan</c> runs each ecosystem's audit tool over the repository's manifests (D38); costs no agent calls.</param>
@@ -78,7 +78,7 @@
78
78
  <member name="M:CodeMuster.Application.Config.#ctor(System.Collections.Generic.IReadOnlyList{CodeMuster.Application.Lens},System.Int32,System.Double,System.Boolean,System.Boolean)">
79
79
  <summary>The committed per-repo configuration (D04).</summary>
80
80
  <param name="Lenses">Named lenses; at least one is expected.</param>
81
- <param name="SliceTokenBudget">Approximate tokens of code a slice pack may show in full before farther members shrink to signatures (D07).</param>
81
+ <param name="SliceTokenBudget">Approximate tokens of code shown in full: oversized whole-file packs are skipped, and farther slice members shrink to signatures (D07).</param>
82
82
  <param name="ResolutionThreshold">Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</param>
83
83
  <param name="Verify">Whether every recorded finding gets a verify unit, costing about one more agent call per finding (D27, D28).</param>
84
84
  <param name="Vulnerabilities">Whether <c>scan</c> runs each ecosystem's audit tool over the repository's manifests (D38); costs no agent calls.</param>
@@ -87,7 +87,7 @@
87
87
  <summary>Named lenses; at least one is expected.</summary>
88
88
  </member>
89
89
  <member name="P:CodeMuster.Application.Config.SliceTokenBudget">
90
- <summary>Approximate tokens of code a slice pack may show in full before farther members shrink to signatures (D07).</summary>
90
+ <summary>Approximate tokens of code shown in full: oversized whole-file packs are skipped, and farther slice members shrink to signatures (D07).</summary>
91
91
  </member>
92
92
  <member name="P:CodeMuster.Application.Config.ResolutionThreshold">
93
93
  <summary>Share of call sites, 0 to 1, the mappers must resolve before status calls slice coverage complete (D09).</summary>
@@ -436,6 +436,9 @@
436
436
  <member name="F:CodeMuster.Application.DoneOutcome.InvalidResponse">
437
437
  <summary>The response was not valid JSON for the schema; a failed analysis was stored and the unit is Failed (D10).</summary>
438
438
  </member>
439
+ <member name="F:CodeMuster.Application.DoneOutcome.Skipped">
440
+ <summary>The unit was skipped without an agent call because its pack exceeded the budget.</summary>
441
+ </member>
439
442
  <member name="T:CodeMuster.Application.DoneResult">
440
443
  <summary>The outcome of <see cref="T:CodeMuster.Application.Done"/> and a one-line message for the console.</summary>
441
444
  <param name="Outcome">What happened.</param>
@@ -651,6 +654,21 @@
651
654
  <member name="P:CodeMuster.Application.InitResult.Gitignore">
652
655
  <summary>What happened to <c>.gitignore</c>.</summary>
653
656
  </member>
657
+ <member name="T:CodeMuster.Application.IntelligentConfig">
658
+ <summary>Uses a read-only agent to recommend additive, repository-specific audit configuration.</summary>
659
+ </member>
660
+ <member name="M:CodeMuster.Application.IntelligentConfig.#ctor(CodeMuster.Domain.ISourceTree,CodeMuster.Domain.IFileSystem,CodeMuster.Domain.IAgentAdapter,CodeMuster.Domain.IClock)">
661
+ <summary>Uses a read-only agent to recommend additive, repository-specific audit configuration.</summary>
662
+ </member>
663
+ <member name="M:CodeMuster.Application.IntelligentConfig.RunAsync(System.String,System.Threading.CancellationToken)">
664
+ <summary>Inspects tracked repository context and applies validated recommendations, preserving a backup.</summary>
665
+ </member>
666
+ <member name="T:CodeMuster.Application.IntelligentConfigResult">
667
+ <summary>Applied configuration changes and the retained repo-relative backup, if anything changed.</summary>
668
+ </member>
669
+ <member name="M:CodeMuster.Application.IntelligentConfigResult.#ctor(System.Boolean,System.String,System.Collections.Generic.IReadOnlyList{System.String},System.Int32)">
670
+ <summary>Applied configuration changes and the retained repo-relative backup, if anything changed.</summary>
671
+ </member>
654
672
  <member name="T:CodeMuster.Application.Lens">
655
673
  <summary>One named set of audit instructions from <c>.codemuster/config.json</c>, scoped by globs and languages.</summary>
656
674
  <param name="Id">Short name the model echoes back as <c>lens_id</c> on each finding.</param>
@@ -686,7 +704,7 @@
686
704
  <member name="T:CodeMuster.Application.Next">
687
705
  <summary>Hands out the next units that need work, each as one markdown pack (D01). A verify unit's pack asks the model to refute its finding instead of auditing (D27).</summary>
688
706
  </member>
689
- <member name="M:CodeMuster.Application.Next.#ctor(CodeMuster.Domain.ILedger,CodeMuster.Domain.ISourceTree,CodeMuster.Application.Config,System.Boolean,System.Nullable{CodeMuster.Domain.UnitKind},System.String)">
707
+ <member name="M:CodeMuster.Application.Next.#ctor(CodeMuster.Domain.ILedger,CodeMuster.Domain.ISourceTree,CodeMuster.Application.Config,System.Boolean,System.Nullable{CodeMuster.Domain.UnitKind},System.String,System.IProgress{System.String})">
690
708
  <summary>Hands out the next units that need work, each as one markdown pack (D01). A verify unit's pack asks the model to refute its finding instead of auditing (D27).</summary>
691
709
  </member>
692
710
  <member name="M:CodeMuster.Application.Next.RunAsync(System.Int32,System.Threading.CancellationToken)">
@@ -819,22 +837,22 @@
819
837
  <param name="UnitId">The unit attempted.</param>
820
838
  <param name="Kind">The unit's kind.</param>
821
839
  <param name="Key">The unit's short human name, for the console.</param>
822
- <param name="Attempt">How many times this run has tried the unit, counting this one.</param>
823
- <param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed.</param>
840
+ <param name="Attempt">How many times this run has tried the unit, counting this one; zero for a skipped pack.</param>
841
+ <param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed, Skipped when the pack exceeded the budget.</param>
824
842
  <param name="Message">One line for the console: the Done message, the adapter error, or why the run gave up.</param>
825
843
  <param name="Completed">Units recorded so far this run.</param>
826
- <param name="Total">Units recorded so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
844
+ <param name="Total">Units recorded or skipped so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
827
845
  </member>
828
846
  <member name="M:CodeMuster.Application.RunProgress.#ctor(System.String,CodeMuster.Domain.UnitKind,System.String,System.Int32,CodeMuster.Application.DoneOutcome,System.String,System.Int32,System.Int32)">
829
847
  <summary>One attempt on one unit, reported by <see cref="T:CodeMuster.Application.Run"/> as soon as it finishes.</summary>
830
848
  <param name="UnitId">The unit attempted.</param>
831
849
  <param name="Kind">The unit's kind.</param>
832
850
  <param name="Key">The unit's short human name, for the console.</param>
833
- <param name="Attempt">How many times this run has tried the unit, counting this one.</param>
834
- <param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed.</param>
851
+ <param name="Attempt">How many times this run has tried the unit, counting this one; zero for a skipped pack.</param>
852
+ <param name="Outcome">What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed, Skipped when the pack exceeded the budget.</param>
835
853
  <param name="Message">One line for the console: the Done message, the adapter error, or why the run gave up.</param>
836
854
  <param name="Completed">Units recorded so far this run.</param>
837
- <param name="Total">Units recorded so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
855
+ <param name="Total">Units recorded or skipped so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</param>
838
856
  </member>
839
857
  <member name="P:CodeMuster.Application.RunProgress.UnitId">
840
858
  <summary>The unit attempted.</summary>
@@ -846,10 +864,10 @@
846
864
  <summary>The unit's short human name, for the console.</summary>
847
865
  </member>
848
866
  <member name="P:CodeMuster.Application.RunProgress.Attempt">
849
- <summary>How many times this run has tried the unit, counting this one.</summary>
867
+ <summary>How many times this run has tried the unit, counting this one; zero for a skipped pack.</summary>
850
868
  </member>
851
869
  <member name="P:CodeMuster.Application.RunProgress.Outcome">
852
- <summary>What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed.</summary>
870
+ <summary>What <see cref="T:CodeMuster.Application.Done"/> did with the response; Rejected when the adapter itself failed, Skipped when the pack exceeded the budget.</summary>
853
871
  </member>
854
872
  <member name="P:CodeMuster.Application.RunProgress.Message">
855
873
  <summary>One line for the console: the Done message, the adapter error, or why the run gave up.</summary>
@@ -858,7 +876,7 @@
858
876
  <summary>Units recorded so far this run.</summary>
859
877
  </member>
860
878
  <member name="P:CodeMuster.Application.RunProgress.Total">
861
- <summary>Units recorded so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</summary>
879
+ <summary>Units recorded or skipped so far plus those still needing work when the current batch started; grows as recorded findings add verify units.</summary>
862
880
  </member>
863
881
  <member name="T:CodeMuster.Application.RunResult">
864
882
  <summary>How a <see cref="T:CodeMuster.Application.Run"/> ended.</summary>
@@ -881,6 +899,9 @@
881
899
  <member name="P:CodeMuster.Application.RunResult.Cancelled">
882
900
  <summary>True when the run stopped because its token was cancelled; in-flight units were left as they were.</summary>
883
901
  </member>
902
+ <member name="P:CodeMuster.Application.RunResult.Skipped">
903
+ <summary>Units skipped for exceeding the pack budget, without spending agent attempts.</summary>
904
+ </member>
884
905
  <member name="T:CodeMuster.Application.Scan">
885
906
  <summary>
886
907
  Discovers the tree, refreshes file rows through the stat cache (D05), plans units, retires every live unit the plan no longer holds, and records a <see cref="T:CodeMuster.Domain.ScanRun"/>.
@@ -901,7 +922,7 @@
901
922
  <summary>Runs one scan, in slice mode when mappers were given.</summary>
902
923
  </member>
903
924
  <member name="M:CodeMuster.Application.Scan.AuditPaths(System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.FileRecord})">
904
- <summary>Files the audit may look at: everything not excluded, plus the lockfiles, which are excluded as code but are exactly what the audit tools read (D38).</summary>
925
+ <summary>Files the audit may look at: everything not excluded, plus data manifests and lockfiles, which are excluded as code but are exactly what the audit tools read (D38).</summary>
905
926
  </member>
906
927
  <member name="T:CodeMuster.Application.ScanResult">
907
928
  <summary>What one <see cref="T:CodeMuster.Application.Scan"/> found and changed.</summary>
@@ -1104,6 +1125,9 @@
1104
1125
  <member name="P:CodeMuster.Application.StatusReport.VulnerablePackages">
1105
1126
  <summary>Outstanding vulnerable packages by severity, from the last dependency audit (D38).</summary>
1106
1127
  </member>
1128
+ <member name="P:CodeMuster.Application.StatusReport.Skipped">
1129
+ <summary>Units skipped without being analyzed because their pack exceeded the budget.</summary>
1130
+ </member>
1107
1131
  <member name="P:CodeMuster.Application.StatusReport.UxStatus">
1108
1132
  <summary>Browser review applicability and recorded evidence, separate from code coverage.</summary>
1109
1133
  </member>
Binary file
@@ -599,6 +599,9 @@
599
599
  <member name="M:CodeMuster.Domain.IFileSystem.WriteAllTextAsync(System.String,System.String,System.Threading.CancellationToken)">
600
600
  <summary>Writes a whole file as UTF-8 text without a byte-order mark, creating missing parent directories.</summary>
601
601
  </member>
602
+ <member name="M:CodeMuster.Domain.IFileSystem.WriteAllTextAtomicallyAsync(System.String,System.String,System.Threading.CancellationToken)">
603
+ <summary>Writes UTF-8 to a sibling temporary file and replaces the destination only after the write completes.</summary>
604
+ </member>
602
605
  <member name="T:CodeMuster.Domain.ILedger">
603
606
  <summary>The SQLite ledger behind every verb (D04). Implementations must be safe for two writers with a busy timeout.</summary>
604
607
  </member>
@@ -623,6 +626,9 @@
623
626
  <member name="M:CodeMuster.Domain.ILedger.NextAsync(System.Int32,System.Nullable{CodeMuster.Domain.UnitKind},System.String,System.Threading.CancellationToken)">
624
627
  <summary>Up to <paramref name="batch"/> units that need work (pending, stale, or failed), only of <paramref name="kind"/> when it is given, oldest first by insertion order. Dependencies are excluded; fixes require explicit kind selection.</summary>
625
628
  </member>
629
+ <member name="M:CodeMuster.Domain.ILedger.SkipUnitAsync(System.String,System.String,System.String,System.Threading.CancellationToken)">
630
+ <summary>Marks the matching current unit skipped with its reason, preserving analyses, findings and members.</summary>
631
+ </member>
626
632
  <member name="M:CodeMuster.Domain.ILedger.RecordAnalysisAsync(CodeMuster.Domain.Analysis,System.Collections.Generic.IReadOnlyList{CodeMuster.Domain.Finding},System.Threading.CancellationToken,CodeMuster.Domain.VerifyResponse)">
627
633
  <summary>Stores an analysis and its findings atomically and moves the unit to Done (with summary, summary hash, and lens hash) or Failed.</summary>
628
634
  </member>
@@ -907,7 +913,7 @@
907
913
  <param name="Status">Where the unit stands in the loop.</param>
908
914
  <param name="Fidelity">Trust in the map that built it.</param>
909
915
  <param name="LensHash">Hash of the lenses the last successful analysis used, or null.</param>
910
- <param name="Summary">One-line summary from the last successful analysis.</param>
916
+ <param name="Summary">One-line summary from the last successful analysis, or the current skip reason.</param>
911
917
  <param name="SummaryHash">Fingerprint the summary was generated from.</param>
912
918
  </member>
913
919
  <member name="M:CodeMuster.Domain.Unit.#ctor(System.String,CodeMuster.Domain.UnitKind,System.String,System.String,CodeMuster.Domain.UnitStatus,CodeMuster.Domain.Fidelity,System.String,System.String,System.String)">
@@ -919,7 +925,7 @@
919
925
  <param name="Status">Where the unit stands in the loop.</param>
920
926
  <param name="Fidelity">Trust in the map that built it.</param>
921
927
  <param name="LensHash">Hash of the lenses the last successful analysis used, or null.</param>
922
- <param name="Summary">One-line summary from the last successful analysis.</param>
928
+ <param name="Summary">One-line summary from the last successful analysis, or the current skip reason.</param>
923
929
  <param name="SummaryHash">Fingerprint the summary was generated from.</param>
924
930
  </member>
925
931
  <member name="P:CodeMuster.Domain.Unit.Id">
@@ -944,7 +950,7 @@
944
950
  <summary>Hash of the lenses the last successful analysis used, or null.</summary>
945
951
  </member>
946
952
  <member name="P:CodeMuster.Domain.Unit.Summary">
947
- <summary>One-line summary from the last successful analysis.</summary>
953
+ <summary>One-line summary from the last successful analysis, or the current skip reason.</summary>
948
954
  </member>
949
955
  <member name="P:CodeMuster.Domain.Unit.SummaryHash">
950
956
  <summary>Fingerprint the summary was generated from.</summary>
@@ -1098,6 +1104,9 @@
1098
1104
  <member name="F:CodeMuster.Domain.UnitStatus.Retired">
1099
1105
  <summary>No longer part of the tree; kept for history, never handed out.</summary>
1100
1106
  </member>
1107
+ <member name="F:CodeMuster.Domain.UnitStatus.Skipped">
1108
+ <summary>Not reviewed because its pack exceeded the budget; requeued by scan or force.</summary>
1109
+ </member>
1101
1110
  <member name="T:CodeMuster.Domain.Verdict">
1102
1111
  <summary>What a verify unit concluded about one finding.</summary>
1103
1112
  </member>
Binary file
Binary file
@@ -7,12 +7,12 @@
7
7
  "targets": {
8
8
  ".NETCoreApp,Version=v10.0": {},
9
9
  ".NETCoreApp,Version=v10.0/win-x64": {
10
- "codemuster/0.2.8": {
10
+ "codemuster/0.3.0": {
11
11
  "dependencies": {
12
- "CodeMuster.Application": "0.2.8",
13
- "CodeMuster.Infrastructure": "0.2.8",
14
- "CodeMuster.Mapping.CSharp": "0.2.8",
15
- "CodeMuster.Mapping.TypeScript": "0.2.8",
12
+ "CodeMuster.Application": "0.3.0",
13
+ "CodeMuster.Infrastructure": "0.3.0",
14
+ "CodeMuster.Mapping.CSharp": "0.3.0",
15
+ "CodeMuster.Mapping.TypeScript": "0.3.0",
16
16
  "runtimepack.Microsoft.NETCore.App.Runtime.win-x64": "10.0.12"
17
17
  },
18
18
  "runtime": {
@@ -1036,65 +1036,65 @@
1036
1036
  }
1037
1037
  }
1038
1038
  },
1039
- "CodeMuster.Application/0.2.8": {
1039
+ "CodeMuster.Application/0.3.0": {
1040
1040
  "dependencies": {
1041
- "CodeMuster.Domain": "0.2.8"
1041
+ "CodeMuster.Domain": "0.3.0"
1042
1042
  },
1043
1043
  "runtime": {
1044
1044
  "CodeMuster.Application.dll": {
1045
- "assemblyVersion": "0.2.8.0",
1046
- "fileVersion": "0.2.8.0"
1045
+ "assemblyVersion": "0.3.0.0",
1046
+ "fileVersion": "0.3.0.0"
1047
1047
  }
1048
1048
  }
1049
1049
  },
1050
- "CodeMuster.Domain/0.2.8": {
1050
+ "CodeMuster.Domain/0.3.0": {
1051
1051
  "runtime": {
1052
1052
  "CodeMuster.Domain.dll": {
1053
- "assemblyVersion": "0.2.8.0",
1054
- "fileVersion": "0.2.8.0"
1053
+ "assemblyVersion": "0.3.0.0",
1054
+ "fileVersion": "0.3.0.0"
1055
1055
  }
1056
1056
  }
1057
1057
  },
1058
- "CodeMuster.Infrastructure/0.2.8": {
1058
+ "CodeMuster.Infrastructure/0.3.0": {
1059
1059
  "dependencies": {
1060
- "CodeMuster.Domain": "0.2.8",
1060
+ "CodeMuster.Domain": "0.3.0",
1061
1061
  "Microsoft.Data.Sqlite": "10.0.12"
1062
1062
  },
1063
1063
  "runtime": {
1064
1064
  "CodeMuster.Infrastructure.dll": {
1065
- "assemblyVersion": "0.2.8.0",
1066
- "fileVersion": "0.2.8.0"
1065
+ "assemblyVersion": "0.3.0.0",
1066
+ "fileVersion": "0.3.0.0"
1067
1067
  }
1068
1068
  }
1069
1069
  },
1070
- "CodeMuster.Mapping.CSharp/0.2.8": {
1070
+ "CodeMuster.Mapping.CSharp/0.3.0": {
1071
1071
  "dependencies": {
1072
- "CodeMuster.Domain": "0.2.8",
1072
+ "CodeMuster.Domain": "0.3.0",
1073
1073
  "Microsoft.CodeAnalysis.CSharp.Workspaces": "5.9.0",
1074
1074
  "Microsoft.CodeAnalysis.Workspaces.MSBuild": "5.9.0"
1075
1075
  },
1076
1076
  "runtime": {
1077
1077
  "CodeMuster.Mapping.CSharp.dll": {
1078
- "assemblyVersion": "0.2.8.0",
1079
- "fileVersion": "0.2.8.0"
1078
+ "assemblyVersion": "0.3.0.0",
1079
+ "fileVersion": "0.3.0.0"
1080
1080
  }
1081
1081
  }
1082
1082
  },
1083
- "CodeMuster.Mapping.TypeScript/0.2.8": {
1083
+ "CodeMuster.Mapping.TypeScript/0.3.0": {
1084
1084
  "dependencies": {
1085
- "CodeMuster.Domain": "0.2.8"
1085
+ "CodeMuster.Domain": "0.3.0"
1086
1086
  },
1087
1087
  "runtime": {
1088
1088
  "CodeMuster.Mapping.TypeScript.dll": {
1089
- "assemblyVersion": "0.2.8.0",
1090
- "fileVersion": "0.2.8.0"
1089
+ "assemblyVersion": "0.3.0.0",
1090
+ "fileVersion": "0.3.0.0"
1091
1091
  }
1092
1092
  }
1093
1093
  }
1094
1094
  }
1095
1095
  },
1096
1096
  "libraries": {
1097
- "codemuster/0.2.8": {
1097
+ "codemuster/0.3.0": {
1098
1098
  "type": "project",
1099
1099
  "serviceable": false,
1100
1100
  "sha512": ""
@@ -1286,27 +1286,27 @@
1286
1286
  "path": "system.composition.typedparts/10.0.1",
1287
1287
  "hashPath": "system.composition.typedparts.10.0.1.nupkg.sha512"
1288
1288
  },
1289
- "CodeMuster.Application/0.2.8": {
1289
+ "CodeMuster.Application/0.3.0": {
1290
1290
  "type": "project",
1291
1291
  "serviceable": false,
1292
1292
  "sha512": ""
1293
1293
  },
1294
- "CodeMuster.Domain/0.2.8": {
1294
+ "CodeMuster.Domain/0.3.0": {
1295
1295
  "type": "project",
1296
1296
  "serviceable": false,
1297
1297
  "sha512": ""
1298
1298
  },
1299
- "CodeMuster.Infrastructure/0.2.8": {
1299
+ "CodeMuster.Infrastructure/0.3.0": {
1300
1300
  "type": "project",
1301
1301
  "serviceable": false,
1302
1302
  "sha512": ""
1303
1303
  },
1304
- "CodeMuster.Mapping.CSharp/0.2.8": {
1304
+ "CodeMuster.Mapping.CSharp/0.3.0": {
1305
1305
  "type": "project",
1306
1306
  "serviceable": false,
1307
1307
  "sha512": ""
1308
1308
  },
1309
- "CodeMuster.Mapping.TypeScript/0.2.8": {
1309
+ "CodeMuster.Mapping.TypeScript/0.3.0": {
1310
1310
  "type": "project",
1311
1311
  "serviceable": false,
1312
1312
  "sha512": ""
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@codemuster/win32-x64",
3
- "version": "0.2.8",
3
+ "version": "0.3.0",
4
4
  "description": "The win32-x64 build of CodeMuster, installed by the codemuster package.",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "repository": {
@@ -14,6 +14,7 @@
14
14
  "x64"
15
15
  ],
16
16
  "files": [
17
- "bin"
17
+ "bin",
18
+ "CHANGELOG.md"
18
19
  ]
19
20
  }