Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 5 additions & 3 deletions Docs/Version.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Version

RELEASE_2021 - iOS 15.5 - macOS 12.7.1

RELEASE_2023 - iOS 17.0 - macOS 14.0
| Framework Version | iOS Version | macOS Version | Legacy Release Macro |
|-------------------|-------------|---------------|----------------------|
| 3.2.1 | 15.5 | 12.7.1 | RELEASE_2021 |
| 5.0.77 | 17.0 | 14.0 | RELEASE_2023 |
| 6.5.1 | 18.5 | 15.6 | RELEASE_2024 |
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// AnyAttribute.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: API complete

public import OpenAttributeGraphCxx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// External.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

@frozen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// PointerOffset.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

@frozen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// _AttributeBody.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

public import OpenAttributeGraphCxx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// ObservedAttribute.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

public protocol ObservedAttribute: _AttributeBody {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// IndirectAttribute.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

@frozen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// AnyOptionalAttribute.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

@frozen
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// OptionalAttribute.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

/// An optional attribute wrapper that may or may not contain a value.
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenAttributeGraph/Attribute/Rule/Focus.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Focus.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

/// A rule that focuses on a specific property of another attribute using KeyPath.
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenAttributeGraph/Attribute/Rule/Map.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Map.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

// MARK: - Map
Expand Down
6 changes: 3 additions & 3 deletions Sources/OpenAttributeGraph/Attribute/Rule/Rule.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// _AttributeBody.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

public import OpenAttributeGraphCxx
Expand Down Expand Up @@ -65,7 +65,7 @@ extension Rule {
public static func _update(_ pointer: UnsafeMutableRawPointer, attribute _: AnyAttribute) {
let rule = pointer.assumingMemoryBound(to: Self.self)
let value = rule.pointee.value
// Verified for RELEASE_2023
// Verified for 5.0.77
withUnsafePointer(to: value) { value in
Graph.setOutputValue(value)
}
Expand All @@ -75,7 +75,7 @@ extension Rule {
guard let initialValue else {
return
}
// Verified for RELEASE_2023
// Verified for 5.0.77
withUnsafePointer(to: initialValue) { value in
Graph.setOutputValue(value)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// StatefulRule.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

public import OpenAttributeGraphCxx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// AnyRuleContext.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

public import OpenAttributeGraphCxx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// RuleContext.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

public import OpenAttributeGraphCxx
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenAttributeGraph/Graph/Graph.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Graph.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: WIP

public import OpenAttributeGraphCxx
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenAttributeGraph/Graph/Subgraph.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Subgraph.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: WIP

public import OpenAttributeGraphCxx
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenAttributeGraph/Runtime/CompareValues.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// CompareValues.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

public import OpenAttributeGraphCxx
Expand Down
2 changes: 1 addition & 1 deletion Sources/OpenAttributeGraph/Runtime/Metadata.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// Metadata.swift
// OpenAttributeGraph
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: WIP

public import OpenAttributeGraphCxx
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// OAGAttributeFlags.h
// OpenAttributeGraphCxx
//
// Audited for RELEASE_2021
// Audited for 3.2.1
// Status: Complete

#ifndef OAGAttributeFlags_h
Expand Down